mirror of
https://github.com/Speyll/anemone.git
synced 2024-11-10 00:16:35 +00:00
18 lines
No EOL
384 B
HTML
18 lines
No EOL
384 B
HTML
<!DOCTYPE html>
|
|
<html lang="{% if page %}{{ page.lang }}{% else %}{{ config.default_language }}{% endif %}">
|
|
<head>
|
|
{% include "head.html" %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% include "header.html" %}
|
|
</header>
|
|
<main>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</main>
|
|
<footer>
|
|
{% include "footer.html" %}
|
|
</footer>
|
|
</body>
|
|
</html> |