anemone/templates/base.html

20 lines
365 B
HTML
Raw Normal View History

2023-07-04 01:37:44 +01:00
<!doctype html>
<html lang="{{ lang }}">
2023-09-06 11:08:00 +01:00
<head>
{% include "head.html" %}
2023-09-06 11:08:00 +01:00
</head>
<body>
<div class="wrapper">
<header>
{% include "header.html" %}
2023-09-06 11:08:00 +01:00
</header>
<main>
{% block content %}{% endblock content %}
</main>
<footer>
{% include "footer.html" %}
2023-09-06 11:08:00 +01:00
</footer>
</div>
</body>
2023-07-04 01:37:44 +01:00
</html>