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" %}
</head>
<body>
<header>
{% include "header.html" %}
</header>
<main>
{% block content %}
{% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
<div class="wrapper">
<header>
{% include "header.html" %}
</header>
<main>
{% block content %}
{% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
</body>
</html>