comlib/templates/layout.html

16 lines
360 B
HTML
Raw Normal View History

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<title>{% block title %}Welcome{% endblock %} — Comrades Library</title>
<body>
<header>
<h1>Comrades Library</h1>
{% include 'nav.html' %}
</header>
<div class="page">
{% block body %}{% endblock %}
</div>
<footer>
</footer>
</body>