premier brouillon

This commit is contained in:
OniriCorpe 2026-04-15 03:58:05 +02:00
parent 4442a417aa
commit c4b5d14206
20 changed files with 33235 additions and 0 deletions

19
templates/base.html Normal file
View file

@ -0,0 +1,19 @@
{% 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>