48 lines
1.4 KiB
Twig
48 lines
1.4 KiB
Twig
<!DOCTYPE html>
|
|
<html class="no-js" lang="en-GB">
|
|
<head>
|
|
{% include 'title' %}
|
|
|
|
<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 %}
|
|
|
|
{% include 'og' with { og: page.meta.og } %}
|
|
|
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css">
|
|
{% block stylesheets '' %}
|
|
|
|
{% for size in site.apple_touch_icon_sizes %}
|
|
<link rel="apple-touch-icon" href="{{ site.avatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
|
{% endfor %}
|
|
|
|
{% for size in site.favicon_sizes %}
|
|
<link rel="icon" href="{{ site.avatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
|
{% endfor %}
|
|
</head>
|
|
|
|
<body class="{{ page.blocks.body_classes }}">
|
|
{% include 'nav' %}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<main class="col-md-9">
|
|
{% block content_top %}{% endblock %}
|
|
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
|
|
{% block content_bottom %}{% endblock %}
|
|
</main>
|
|
|
|
{% include 'sidebar' %}
|
|
</div>{# .row #}
|
|
</div>{# .container #}
|
|
|
|
{% include 'footer' %}
|
|
|
|
{% block scripts '' %}
|
|
</body>
|
|
</html>
|