2019-11-11 23:53:11 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2020-02-20 08:38:32 +11:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-06-23 02:41:33 -05:00
|
|
|
<link rel="preconnect" href="https://use.typekit.net/" crossorigin>
|
|
|
|
<link rel="dns-prefetch" href="https://use.typekit.net/">
|
|
|
|
<link rel="preconnect" href="https://p.typekit.net/" crossorigin>
|
|
|
|
<link rel="dns-prefetch" href="https://p.typekit.net/">
|
2020-03-09 23:47:06 +01:00
|
|
|
{# Use title with path, or append a space to the page title to avoid collpasing with the meta title #}
|
|
|
|
{% set pageTitle = titleWithPath or title + ' ' or '' %}
|
2020-08-24 13:41:45 -04:00
|
|
|
|
|
|
|
{% set preview = excerpt or renderData.description or description or metadata.description %}
|
|
|
|
|
2020-03-09 23:47:06 +01:00
|
|
|
<title>{{ pageTitle + metadata.title }}</title>
|
2020-08-24 13:41:45 -04:00
|
|
|
<meta
|
|
|
|
name="twitter:description"
|
2020-09-01 15:39:23 -04:00
|
|
|
content="{% metaDescriptionWithFlag preview, flag %}"
|
2020-08-24 13:41:45 -04:00
|
|
|
>
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
<meta name="twitter:title" content="{{ pageTitle }}"/>
|
|
|
|
<meta
|
|
|
|
name="og:description"
|
2020-09-01 15:39:23 -04:00
|
|
|
content="{% metaDescriptionWithFlag preview, flag %}"
|
2020-08-24 13:41:45 -04:00
|
|
|
>
|
|
|
|
<meta name="og:title" content="{{ pageTitle }}"/>
|
2020-03-09 23:47:06 +01:00
|
|
|
<meta
|
|
|
|
name="description"
|
2020-09-01 15:39:23 -04:00
|
|
|
content="{% metaDescriptionWithFlag preview, flag %}"
|
2020-03-09 23:47:06 +01:00
|
|
|
>
|
2020-06-23 02:41:33 -05:00
|
|
|
<link rel="stylesheet" href="https://use.typekit.net/qlo3dpu.css">
|
2020-02-20 08:38:32 +11:00
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/base.css' | url }}">
|
2020-06-23 02:41:33 -05:00
|
|
|
<link rel="alternate" type="application/atom+xml" href="{{ metadata.feedPermalink | absoluteUrl(metadata.url) }}">
|
2020-03-19 16:20:47 -07:00
|
|
|
{% block pageStyles %}
|
|
|
|
{% endblock pageStyles %}
|
2019-11-12 15:11:03 +01:00
|
|
|
</head>
|
2019-11-11 23:53:11 +01:00
|
|
|
<body>
|
2020-02-20 08:38:32 +11:00
|
|
|
{% block content %}{% endblock content %}
|
2020-08-26 12:10:24 +02:00
|
|
|
{% include 'components/base/site-footer.njk' %}
|
2020-03-09 23:47:06 +01:00
|
|
|
{% block pageScript %}
|
|
|
|
{% endblock pageScript %}
|
2019-11-12 01:17:50 +01:00
|
|
|
</body>
|
2020-08-26 12:10:24 +02:00
|
|
|
<script defer src="/js/theme-switcher.js"></script>
|
2020-03-09 23:47:06 +01:00
|
|
|
</html>
|