Close blocks properly

This commit is contained in:
daudix
2024-09-06 16:12:23 +03:00
parent dd5eb6d669
commit 1608ed814c
5 changed files with 6 additions and 12 deletions

View File

@ -16,10 +16,10 @@
{% include "partials/nav.html" %}
{%- endif %}
<div id="main" class="container">
{% block custom %}{% endblock %}
{% block content %}{% endblock %}
{% block custom %}{% endblock custom %}
{% block content %}{% endblock content %}
</div>
{% include "partials/footer.html" %}
{% endblock %}
{% endblock body %}
</body>
</html>