2018-12-16 08:59:42 +00:00
|
|
|
{% extends 'base' %}
|
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-29 23:41:01 +00:00
|
|
|
<footer class="border-grey-light border-t mb-8 mt-10 pt-5">
|
|
|
|
<div class="md:flex md:justify-between">
|
|
|
|
<div>
|
|
|
|
<p>© 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>
|
|
|
|
Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>,
|
|
|
|
and hosted on <a class="link" href="https://www.netlify.com">Netlify</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-06 18:20:14 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endblock %}
|