19 lines
453 B
HTML
19 lines
453 B
HTML
{% import "macros/doc.html" as doc %}
|
|
{% import "macros/trans.html" as trans %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ lang }}">
|
|
<head>
|
|
{% include "partials/head.html" -%}
|
|
</head>
|
|
<body>
|
|
<main {% include "partials/lang_attr.html" -%} >
|
|
{%- block content %} {% endblock content -%}
|
|
</main>
|
|
<footer class="footer">
|
|
<div class="content has-text-centered">
|
|
{% include "partials/footer.html" -%}
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|