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

35 lines
1.1 KiB
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">
{% block page_title %}
<h1>{{ page.title }}</h1>
{% 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
2018-12-31 10:11:59 +00:00
<footer class="border-grey-light border-t mb-8 mt-10 pt-5 text-sm">
2018-12-29 23:41:01 +00:00
<div class="md:flex md:justify-between">
<div>
<p>&copy; 2010-{{ 'now'|date('Y') }} {{ site.title }}</p>
</div>
2018-12-06 18:20:14 +00:00
2018-12-29 23:41:01 +00:00
<div>
<p>
2019-01-03 01:32:59 +00:00
Built with <a href="https://sculpin.io">Sculpin</a> and <a href="https://tailwindcss.com">Tailwind CSS</a>,
and hosted on <a href="https://www.netlify.com">Netlify</a>.
2018-12-29 23:41:01 +00:00
</p>
</div>
</div>
2018-12-06 18:20:14 +00:00
</footer>
</div>
2017-07-11 00:08:32 +00:00
{% endblock %}