Files
shop-pip/app/templates/base.html
T

41 lines
1.7 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=Syne:wght@500;700;800&family=Manrope: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-brand">{{ app_name }}</div>
<p>Цифровые товары с мгновенной выдачей. Вопросы: support@pitopn.shop</p>
<p class="footer-copy">© {{ app_name }} 2026</p>
</footer>
<script src="/static/js/main.js" defer></script>
</body>
</html>