comlib/templates/layout.html

17 lines
416 B
HTML
Raw Normal View History

<!doctype html>
<meta charset="utf-8">
<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>
{% include 'nav.html' %}
</header>
2023-12-17 03:23:28 +00:00
<main>
{% block body %}{% endblock %}
2023-12-17 03:23:28 +00:00
</main>
<footer>
</footer>
</body>