Refactor .content-inner div to wrap all content blocks

This commit is contained in:
Xevion
2022-03-27 06:55:39 -05:00
parent 9b8209841d
commit 5134723841
13 changed files with 20 additions and 21 deletions

View File

@@ -13,9 +13,11 @@
<div class="content-outer">
<div class="content">
{% include 'layouts/header.html' %}
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
<div class="content-inner">
{% block content %}
Do not extend <strong>base.html</strong> directly.
{% endblock content %}
</div>
</div>
{% include 'layouts/footer.html' %}
</div>