anemone/templates/base.html

19 lines
365 B
HTML

<!doctype html>
<html lang="{{ lang }}">
<head>
{% include "head.html" %}
</head>
<body>
<div class="wrapper">
<header>
{% include "header.html" %}
</header>
<main>
{% block content %}{% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
</body>
</html>