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
771 B
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
<!DOCTYPE html>
<html class="no-js" lang="en-GB">
2017-12-26 10:26:10 +00:00
{% include 'head.html.twig' %}
2018-05-21 20:41:37 +00:00
<body class="text-grey-darkest text-sm leading-normal">
2017-12-26 10:26:10 +00:00
{% include 'nav.html.twig' %}
2017-11-16 08:44:08 +00:00
<div class="container mx-auto px-4">
2017-12-26 10:26:10 +00:00
<div class="md:flex -mx-4">
2018-05-12 23:13:06 +00:00
<main class="md:w-3/4 px-4 mb-8 lg:mb-0" role="main">
2017-12-26 10:26:10 +00:00
{% block content_top %}{% endblock %}
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
{% block content_bottom %}{% endblock %}
</main>
{% include 'sidebar.html.twig' %}
2017-11-09 22:44:30 +00:00
</div>
2017-07-11 00:08:32 +00:00
2017-12-26 10:26:10 +00:00
{% include 'footer.html.twig' %}
</div>
2017-07-11 00:08:32 +00:00
2017-12-26 10:26:10 +00:00
{% include 'scripts.html.twig' %}
2017-07-11 00:08:32 +00:00
</body>
</html>