streamlined how multilingual support works

This commit is contained in:
Speyll 2023-11-08 00:22:56 +01:00
parent ed97e270b8
commit 565a6e84e3

View file

@ -4,15 +4,17 @@
{% include "head.html" %} {% include "head.html" %}
</head> </head>
<body> <body>
<header> <div class="wrapper">
{% include "header.html" %} <header>
</header> {% include "header.html" %}
<main> </header>
{% block content %} <main>
{% endblock content %} {% block content %}
</main> {% endblock content %}
<footer> </main>
{% include "footer.html" %} <footer>
</footer> {% include "footer.html" %}
</footer>
</div>
</body> </body>
</html> </html>