Update main wrapper classes
This commit is contained in:
parent
80e33cd3fe
commit
71c249d25b
2 changed files with 15 additions and 7 deletions
|
@ -1,11 +1,19 @@
|
|||
{% extends 'base' %}
|
||||
|
||||
{% block content_wrapper %}
|
||||
<main class="tw-max-w-6xl tw-px-6 tw-mx-auto tw-my-10">
|
||||
<h1 class="tw-mt-0">{{ page.title }}</h1>
|
||||
<main>
|
||||
<div class="tw-max-w-6xl tw-px-6 tw-mx-auto tw-my-10">
|
||||
<h1 class="tw-mt-0">
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
</h1>
|
||||
|
||||
<div class="markup">
|
||||
{% block content %}{% endblock %}
|
||||
{% block content_wrapper_inner %}
|
||||
<div class="markup">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block content_bottom %}{% endblock %}
|
||||
</div>
|
||||
</main>
|
||||
{% endblock %}
|
||||
|
|
Reference in a new issue