oliverdavies.uk/source/_layouts/default.html.twig

26 lines
813 B
Twig
Raw Normal View History

2015-08-09 00:34:20 +00:00
<!DOCTYPE html>
2015-08-20 20:56:18 +00:00
<!--[if lte IE 8]><html class="ie ie8 lt9 lte8 lte7"> <![endif]-->
<!--[if IE 9]><html class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]><html><![endif]-->
<!--[if !IE]><!--><html><!--<![endif]-->
{% include 'head' %}
<body class="{% block body_classes %}{% endblock %}">
{% include 'navbar' %}
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 %}
<main class="col-md-10">
{% block content %}{% endblock %}
</main>
{% endblock %}
2015-08-09 00:34:20 +00:00
2015-08-20 20:56:18 +00:00
{% include 'sidebar' %}
</div>{# .row #}
</div>{# .container #}
2015-08-09 00:34:20 +00:00
2015-08-20 20:56:18 +00:00
{% include 'footer_content' %}
{% include 'footer_scripts' %}
</body>
2015-08-09 00:34:20 +00:00
</html>