first commit

This commit is contained in:
OniriCorpe 2024-06-20 04:55:27 +02:00
commit 8298c15349
93 changed files with 2886 additions and 0 deletions

18
templates/base.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="{% if page %}{{ page.extra.lang | default (value=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>