Complete redesign, wow!

This commit is contained in:
Pascal Engélibert 2024-12-26 13:37:14 +01:00
commit 49049eadb3
37 changed files with 1363 additions and 485 deletions

View file

@ -1,13 +1,13 @@
{% extends "base.html" %}
{% block title %}{{ config.extra.sitename|safe }}{% endblock title %}
{% block title %}{{ tr.sitename|safe }}{% endblock title %}
{% block head %}
{% if section.extra.katex %}{{macros::katex()}}{% endif %}
{% endblock head %}
{% block body %}
<span id="langs">
{% block header %}
<span class="langs">
{{lang}} &#8211;
{% for t in section.translations %}
@ -16,10 +16,8 @@
{% endif %}
{% endfor %}
</span>
{% endblock header %}
<h1>tuxmain</h1>
<main>
{{section.content | safe}}
</main>
{% endblock body %}
{% block main %}
{{section.content | safe}}
{% endblock main %}