comlib/templates/layout.html
HackerNCoder a26e996709 Add viewport meta to scale on phones
Signed-off-by: HackerNCoder <hackerncoder@encryptionin.space>
2023-06-11 20:55:56 +00:00

17 lines
429 B
HTML

<!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>