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

43 lines
1.3 KiB
Twig
Raw Normal View History

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-05-16 04:08:41 +00:00
<head>
<meta charset="utf-8">
2015-05-28 17:05:34 +00:00
{% include 'title' %}
2015-05-27 21:46:50 +00:00
2015-05-16 04:08:41 +00:00
{% if page.meta.description %}
<meta name="description" content="{{ page.meta.description|e('html') }}">
{% endif %}
2015-05-27 21:46:50 +00:00
2015-05-16 04:08:41 +00:00
{% if page.meta.og %}{% include "og" with {og: page.meta.og} %}{% endif %}
2015-05-27 21:46:50 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2015-05-16 04:08:41 +00:00
<link rel="author" href="{{ site.url }}/humans.txt" />
2015-05-28 17:04:05 +00:00
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
2015-05-16 04:08:41 +00:00
</head>
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
2015-05-28 16:58:07 +00:00
{% include 'navbar' %}
2015-03-19 15:15:13 +00:00
2015-05-16 04:08:41 +00:00
<div class="container">
<div class="row">
2015-05-28 17:01:03 +00:00
{% block content_wrapper %}
<div class="col-md-10">
2015-05-16 04:08:41 +00:00
{% block content %}{% endblock %}
2015-05-28 17:01:03 +00:00
</div>
{% endblock %}
2015-05-28 09:38:00 +00:00
2015-05-28 16:58:07 +00:00
{% include 'sidebar' %}
2015-05-16 04:08:41 +00:00
</div>{# .row #}
</div>{# .container #}
2015-03-31 23:03:45 +00:00
2015-05-16 04:08:41 +00:00
<footer class="container" role="contentinfo">
<p class="copyright">&copy; {{ site.start_date }}-{{ 'now' | date('Y') }} {{ site.title }}.</p>
</footer>
2015-03-22 09:58:35 +00:00
2015-05-16 04:08:41 +00:00
{% include 'footer-scripts' %}
</body>
2015-04-13 20:15:09 +00:00
</html>