4ec9304d45
Fixes #41
24 lines
782 B
Twig
24 lines
782 B
Twig
<!DOCTYPE html>
|
|
<html class="no-js" lang="en-GB">
|
|
{% include 'head.html.twig' %}
|
|
<body class="text-grey-darkest text-sm leading-normal border-t-3 border-blue">
|
|
{% include 'nav.html.twig' %}
|
|
|
|
<div class="container mx-auto px-4">
|
|
<div class="md:flex -mx-4">
|
|
<main class="md:w-3/4 px-4 mb-8 lg:mb-0">
|
|
{% block content_top %}{% endblock %}
|
|
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
|
|
{% block content_bottom %}{% endblock %}
|
|
</main>
|
|
|
|
{% include 'sidebar.html.twig' %}
|
|
</div>
|
|
|
|
{% include 'footer.html.twig' %}
|
|
</div>
|
|
|
|
{% include 'scripts.html.twig' %}
|
|
</body>
|
|
</html>
|