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

39 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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="#how">Как купить</a>
<a href="#support">Поддержка</a>
</nav>
<a class="header-cta" href="#catalog">В каталог</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>