Add Pitopn digital shop with FastAPI, Postgres 17, and Docker Compose
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user