feat(templates/base): wrap content in container

This commit is contained in:
Luca 2024-11-02 20:49:59 +01:00
parent 43af8e9cc4
commit 715b65e9d7
1 changed files with 4 additions and 4 deletions

View File

@ -13,14 +13,14 @@
</head>
<body>
{% block body %}
{% block navbar %}
{% include "partials/navbar.html" %}
{% endblock %}
{% block navbar %}{% include "partials/navbar.html" %}{% endblock %}
<div class="container-fluid">
{% block messages %}
{% bootstrap_messages %}
{% endblock %}
{% block content %}
{% endblock %}
</div>
{% endblock %}
<script src="{% static 'bootstrap.bundle.min.js' %}"></script>
<script>