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

51 lines
1.7 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-06-14 02:27:41 +00:00
<head>
<meta lang="en-GB" charset="utf-8">
{% include 'title' %}
2015-05-27 21:46:50 +00:00
2015-06-14 02:27: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-06-14 02:27:41 +00:00
{% if page.meta.og %}{% include "og" with {og: page.meta.og} %}{% endif %}
2015-05-27 21:46:50 +00:00
2015-06-14 02:27:41 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="author" href="{{ site.url }}/humans.txt" />
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
2015-06-14 21:29:30 +00:00
{% for size in site.apple_touch_icon_sizes %}
<link rel="apple-touch-icon" href="{{ site.gravatar_url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
{% for size in site.favicon_sizes %}
<link rel="icon" href="{{ site.gravatar_url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
2015-06-14 02:27:41 +00:00
</head>
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
{% 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 %}
<div class="col-md-10">
{% block content %}{% endblock %}
</div>
{% 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-14 02:27:41 +00:00
<footer class="container" role="contentinfo">
2015-06-14 21:06:55 +00:00
<p class="copyright">&copy; 2010-{{ 'now' | date('Y') }} {{ site.title }}.</p>
2015-06-14 02:27:41 +00:00
</footer>
2015-03-22 09:58:35 +00:00
2015-06-14 02:27:41 +00:00
{% include 'footer-scripts' %}
</body>
2015-04-13 20:15:09 +00:00
</html>