50 lines
2.0 KiB
HTML
50 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{% block title %}{{ app_name }} — магазин цифровых товаров{% endblock %}</title>
|
|
<meta
|
|
name="description"
|
|
content="{{ app_name }} — мгновенная выдача ключей, софта и подарочных карт."
|
|
/>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="/static/css/style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="noise" aria-hidden="true"></div>
|
|
<header class="site-header">
|
|
<a class="brand" href="/">{{ app_name }}</a>
|
|
<nav class="nav" aria-label="Основное меню">
|
|
<a href="/#catalog">Каталог</a>
|
|
<a href="/lookup">Мой заказ</a>
|
|
<a href="/#how">Как купить</a>
|
|
</nav>
|
|
<a class="header-cta cart-link" href="/cart">
|
|
Корзина{% if cart_count %}<span class="cart-badge">{{ cart_count }}</span>{% endif %}
|
|
</a>
|
|
</header>
|
|
<main>{% block content %}{% endblock %}</main>
|
|
<footer class="site-footer" id="support">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<div class="footer-brand">{{ app_name }}</div>
|
|
<p>Цифровые товары с мгновенной выдачей.</p>
|
|
</div>
|
|
<div class="footer-links">
|
|
<a href="/#catalog">Каталог</a>
|
|
<a href="/lookup">Мой заказ</a>
|
|
<a href="/cart">Корзина</a>
|
|
</div>
|
|
</div>
|
|
<p class="footer-copy">© {{ app_name }} 2026 · support@pitopn.shop</p>
|
|
</footer>
|
|
<script src="/static/js/main.js" defer></script>
|
|
</body>
|
|
</html>
|