mirror of
https://github.com/Speyll/anemone.git
synced 2024-11-10 00:16:35 +00:00
19 lines
365 B
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>
|