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 '' %}
|
|
|
|
<title>{{ pageTitle + metadata.title }}</title>
|
|
|
|
<meta
|
|
|
|
name="description"
|
|
|
|
content="{{ renderData.description or description or metadata.description }}"
|
|
|
|
>
|
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-03-09 23:47:06 +01:00
|
|
|
<footer class="site-footer">
|
|
|
|
<nav aria-label="Complimentary">
|
|
|
|
<ul class="navigation-list">
|
|
|
|
<li>
|
|
|
|
<a href="/documentation/">Documentation</a>
|
|
|
|
</li>
|
2020-06-20 19:06:01 +01:00
|
|
|
<li>
|
|
|
|
<a href="/content-warning-guidelines/">Content Warning Guidelines</a>
|
|
|
|
</li>
|
2020-06-12 02:21:37 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ metadata.feedPermalink | absoluteUrl(metadata.url) }}">RSS Feed</a>
|
|
|
|
</li>
|
2020-03-09 23:47:06 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</footer>
|
|
|
|
{% block pageScript %}
|
|
|
|
{% endblock pageScript %}
|
2019-11-12 01:17:50 +01:00
|
|
|
</body>
|
2020-03-09 23:47:06 +01:00
|
|
|
</html>
|