dcbristol-2019-static/source/_layouts/page.html.twig

20 lines
482 B
Twig
Raw Normal View History

2019-04-09 13:08:53 +00:00
{% extends 'base' %}
{% block content_wrapper %}
2019-05-14 22:01:35 +00:00
<main class="tw-justify-start">
2019-05-14 21:23:01 +00:00
<div class="tw-w-full tw-max-w-6xl tw-px-6 tw-mx-auto tw-my-10">
2019-05-07 16:18:56 +00:00
<h1 class="tw-mt-0">
{% block title %}{{ page.title }}{% endblock %}
</h1>
2019-04-09 13:08:53 +00:00
2019-05-07 16:18:56 +00:00
{% block content_wrapper_inner %}
<div class="markup">
{% block content %}{% endblock %}
</div>
{% endblock %}
{% block content_bottom %}{% endblock %}
2019-04-09 13:08:53 +00:00
</div>
</main>
{% endblock %}