Remove extra roles, update template blocks

This commit is contained in:
Oliver Davies 2018-10-06 00:32:35 +01:00
parent 8c1c19ef5d
commit 7b8595090b

View file

@ -27,10 +27,14 @@
<div class="container mx-auto px-4"> <div class="container mx-auto px-4">
<div class="text-grey-darkest md:flex -mx-4"> <div class="text-grey-darkest md:flex -mx-4">
<main class="md:w-2/3 lg:w-3/4 px-4 mb-8 lg:mb-0" role="main"> <main class="md:w-2/3 lg:w-3/4 px-4 mb-8 lg:mb-0">
{% block content_top %}{% endblock %} {% block page_title %}
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %} <h1>{{ page.title }}</h1>
{% block content_bottom %}{% endblock %} {% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
</main> </main>
{% block sidebar_wrapper %} {% block sidebar_wrapper %}
@ -44,7 +48,7 @@
{% endblock %} {% endblock %}
</div> </div>
<footer class="border-t border-grey-light pt-4 mt-4" role="contentinfo"> <footer class="border-t border-grey-light pt-4 mt-4">
<p> <p>
&copy; 2010-{{ 'now'|date('Y') }} {{ site.title }}. &copy; 2010-{{ 'now'|date('Y') }} {{ site.title }}.
Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>. Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>.