Files
new.rybstock.ru/admin/index.php
T
2026-06-04 00:27:17 +03:00

44 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
require_once dirname(__DIR__) . '/app/bootstrap.php';
$sections = [
'Товары',
'Категории',
'Фасовки',
'Заказы',
'Промокоды',
'Акции',
'Популярные товары',
'Отзывы',
'Настройки',
'Прайс-лист',
];
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Админка Рыбсток</title>
<link rel="stylesheet" href="/assets/css/app.css">
</head>
<body>
<main class="page">
<section class="start-screen wide">
<p class="eyebrow">Админка</p>
<h1>Рыбсток</h1>
<p>Подготовлены основные разделы будущей панели управления.</p>
<div class="admin-grid">
<?php foreach ($sections as $section): ?>
<div class="admin-tile"><?= e($section) ?></div>
<?php endforeach; ?>
</div>
</section>
</main>
</body>
</html>