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

36 lines
1.2 KiB
Twig
Raw Normal View History

2015-03-16 09:50:42 +00:00
<!DOCTYPE html>
2015-04-15 00:15:22 +00:00
<html lang="en-GB" class="no-js">
2015-05-16 04:08:41 +00:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if page.meta.description %}
<meta name="description" content="{{ page.meta.description|e('html') }}">
{% endif %}
{% if page.meta.og %}{% include "og" with {og: page.meta.og} %}{% endif %}
<link rel="author" href="{{ site.url }}/humans.txt" />
{% include 'title' %}
<link rel="stylesheet" href="{{ site.url }}/{{ theme_path('assets/css/styles.css') }}">
{% block styles %}{% endblock %}
</head>
<body{% if page.body_class %} class="{{ page.body_class }}"{% endif %}>
{% include 'navbar' %}
2015-03-19 15:15:13 +00:00
2015-05-16 04:08:41 +00:00
<div class="container">
<div class="row">
<div class="col-md-12">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
</div>
</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>