42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{% block title %}Wordsmith — Puzzle Workshop{% endblock %}</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+Mono:wght@400;500;600&family=Playfair+Display:wght@800;900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
</head>
|
|
<body>
|
|
{% set path = request.url.path %}
|
|
<div class="shell">
|
|
<header class="site-header">
|
|
<div class="site-header__inner">
|
|
<a class="brand" href="/">
|
|
<span class="brand__mark">W</span>
|
|
<span>
|
|
<span class="brand__name">Wordsmith</span>
|
|
<span class="brand__tagline">PUZZLE WORKSHOP</span>
|
|
</span>
|
|
</a>
|
|
<nav class="tabs" aria-label="Primary">
|
|
<a href="/" {% if path in ['/', '/generate'] %}aria-current="page"{% endif %}>Generate</a>
|
|
<a href="/themes" {% if path.startswith('/themes') %}aria-current="page"{% endif %}>Themes</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
✦ WORDSMITH · PUZZLE WORKSHOP · EST. 2026 ✦
|
|
</footer>
|
|
</div>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|