448cf2a465
Co-authored-by: Cursor <cursoragent@cursor.com>
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
{{define "layout"}}
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.Title}} — ShopNova</title>
|
|
<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=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="container header-inner">
|
|
<a href="/" class="logo">Shop<span>Nova</span></a>
|
|
<nav class="nav">
|
|
<a href="/" class="nav-link active">Главная</a>
|
|
<a href="#catalog" class="nav-link">Каталог</a>
|
|
<a href="#categories" class="nav-link">Категории</a>
|
|
</nav>
|
|
<div class="header-actions">
|
|
<button type="button" class="btn btn-ghost" aria-label="Поиск">Поиск</button>
|
|
<button type="button" class="btn btn-primary">Корзина</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
{{template "content" .}}
|
|
</main>
|
|
<footer class="site-footer">
|
|
<div class="container footer-inner">
|
|
<p class="footer-brand">ShopNova</p>
|
|
<p class="footer-copy">© 2026 Интернет-магазин. Go + PostgreSQL + Caddy.</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
{{end}}
|