comlib/templates/layout.html

17 lines
429 B
HTML
Raw Normal View History

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|asseturl }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>