comlib/templates/layout.html

15 lines
395 B
HTML
Raw Permalink Normal View History

<!doctype html>
<meta charset="utf-8">
2024-09-01 17:30:27 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-12-16 10:00:19 +00:00
<link rel="stylesheet" href="{{ '/css/style.css'|asseturl }}">
<title>{% block title %}Welcome{% endblock %} — Comrades Library</title>
<body>
<header>
<h1>Comrades Library</h1>
2024-09-01 17:30:27 +00:00
{% include 'nav.html' %}
</header>
{% block body %}{% endblock %}
<footer>
</footer>
</body>