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">
|
2019-11-12 15:11:03 +01:00
|
|
|
|
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-03-19 16:20:47 -07:00
|
|
|
<link rel="stylesheet" href="https://use.typekit.net/qlo3dpu.css" rel="preload"/>
|
2020-02-20 08:38:32 +11:00
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/base.css' | 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>
|
|
|
|
</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>
|