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

25 lines
682 B
HTML

<!DOCTYPE html>
<!--[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{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
{% include 'navbar' %}
<div class="container">
<div class="row">
{% block content_wrapper %}
<div class="col-md-10">
{% block content %}{% endblock %}
</div>
{% endblock %}
{% include 'sidebar' %}
</div>{# .row #}
</div>{# .container #}
{% include 'footer' %}
</body>
</html>