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