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/_includes/head.html.twig

31 lines
999 B
Twig
Raw Normal View History

2017-12-26 10:26:10 +00:00
<head>
2018-01-31 01:05:43 +00:00
<title>
{% if page.title is defined and page.url != '/.' %}
{{ page.title }} |
{% endif %}
{{ site.title }} - {{ site.subtitle }}
</title>
2017-12-26 10:26:10 +00:00
<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 } %}
2018-01-31 01:05:43 +00:00
{% block stylesheets %}
2018-03-01 08:22:57 +00:00
<link rel="stylesheet" href="{{ site.url }}/build/css/site.css">
2018-01-31 01:05:43 +00:00
{% endblock %}
2017-12-26 10:26:10 +00:00
{% for size in site.apple_touch_icon_sizes %}
<link rel="apple-touch-icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
{% for size in site.favicon_sizes %}
<link rel="icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}
</head>