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

2015-08-09 00:34:20 +00:00
<!DOCTYPE html>
<html class="no-js" lang="{{ site.locale }}">
{{ include('head.html.twig') }}
2015-09-27 11:01:49 +00:00
<body class="{{ page.blocks.body_classes }}">
{{ include('nav.html.twig') }}
2015-08-09 00:34:20 +00:00
2015-08-20 20:56:18 +00:00
<div class="container">
<div class="row">
{% block content_wrapper %}
2015-08-20 23:18:47 +00:00
<main class="col-md-9">
2015-11-27 21:20:46 +00:00
{% block content_top %}{% endblock %}
2015-09-27 11:01:49 +00:00
{% block content %}{% endblock %}
2015-11-27 21:20:46 +00:00
{% block content_bottom %}{% endblock %}
2015-08-20 20:56:18 +00:00
</main>
2015-09-27 11:01:49 +00:00
{% endblock %}
2015-08-09 00:34:20 +00:00
{{ include('sidebar.html.twig') }}
2015-08-20 20:56:18 +00:00
</div>{# .row #}
</div>{# .container #}
2015-08-09 00:34:20 +00:00
{{ include('footer.html.twig') }}
2015-08-20 20:56:18 +00:00
</body>
2015-08-09 00:34:20 +00:00
</html>