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
Oliver Davies 4ec9304d45 Remove breadcrumb
Fixes #41
2018-04-23 21:34:34 +01:00

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>