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

26 lines
596 B
Twig
Raw Normal View History

2019-05-20 20:44:51 +01:00
{% extends 'app' %}
2019-04-09 14:08:53 +01:00
2019-05-20 20:44:51 +01:00
{% block body %}
<a href="#main-content" class="visually-hidden focusable skip-link">
Skip to main content
</a>
<div class="tw-min-h-screen tw-flex tw-flex-col">
{% include 'banner' %}
2019-04-09 14:08:53 +01:00
2019-05-20 20:44:51 +01:00
<div class="tw-flex tw-flex-col tw-flex-1">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
2019-05-14 19:58:10 +01:00
2019-05-20 20:44:51 +01:00
{% if page.update_text %}
{% include 'update-text' %}
{% endif %}
2019-05-14 22:10:45 +01:00
</div>
2019-05-20 20:44:51 +01:00
<div>
{% block content_bottom %}{% endblock %}
{% include 'footer' %}
</div>
</div>
{% endblock %}