comlib/templates/layout.html
2024-09-01 19:30:27 +02:00

15 lines
395 B
HTML

<!doctype html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ '/css/style.css'|asseturl }}">
<title>{% block title %}Welcome{% endblock %} — Comrades Library</title>
<body>
<header>
<h1>Comrades Library</h1>
{% include 'nav.html' %}
</header>
{% block body %}{% endblock %}
<footer>
</footer>
</body>