oliverdavies.uk/source/_layouts/default.html

25 lines
664 B
HTML
Raw Normal View History

2015-03-16 09:50:42 +00:00
<!DOCTYPE html>
2015-05-27 22:46:50 +01: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]-->
2015-06-18 09:22:18 +01:00
{% include 'head' %}
2015-06-18 17:38:20 +01:00
<body class="{% block body_classes %}{% endblock %}">
2015-06-14 03:27:41 +01:00
{% include 'navbar' %}
2015-03-19 15:15:13 +00:00
2015-06-14 03:27:41 +01:00
<div class="container">
<div class="row">
{% block content_wrapper %}
<div class="col-md-10">
{% block content %}{% endblock %}
</div>
{% endblock %}
2015-05-28 10:38:00 +01:00
2015-06-14 03:27:41 +01:00
{% include 'sidebar' %}
</div>{# .row #}
</div>{# .container #}
2015-04-01 00:03:45 +01:00
2015-06-18 09:22:18 +01:00
{% include 'footer' %}
2015-06-14 03:27:41 +01:00
</body>
2015-04-13 21:15:09 +01:00
</html>