This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_layouts/default.html.twig

24 lines
683 B
Twig
Raw Normal View History

2019-01-04 19:53:59 +00:00
{% extends 'app' %}
2017-07-11 00:08:32 +00:00
2018-12-06 18:20:14 +00:00
{% block body %}
2018-12-19 23:47:06 +00:00
<a href="#main-content" class="skip-link w-full text-center text-white bg-blue p-4 focus:outline-none">Skip to main content</a>
2018-12-06 18:20:14 +00:00
{% include 'layout/navbar' %}
2018-12-29 23:41:01 +00:00
<div class="mt-24 max-w-xl px-4 mx-auto">
<main id="main-content">
2019-01-05 00:08:45 +00:00
{% block page_title_wrapper %}
<h1 class="mb-4">
{% block page_title %}{{ page.title }}{% endblock %}
</h1>
2018-12-29 23:41:01 +00:00
{% endblock %}
2018-12-06 18:20:14 +00:00
2018-12-29 23:41:01 +00:00
{% block content_wrapper %}
{% block content %}{% endblock %}
2018-12-06 18:20:14 +00:00
{% endblock %}
2018-12-29 23:41:01 +00:00
</main>
2018-12-06 18:20:14 +00:00
2019-01-04 20:01:38 +00:00
{% include 'layout/footer' %}
2018-12-06 18:20:14 +00:00
</div>
2017-07-11 00:08:32 +00:00
{% endblock %}