2024-08-21 12:00:00 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ site.locale|default('en') }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2024-09-15 20:33:54 +01:00
|
|
|
<link rel="canonical" href="{{ site.url }}{{ page.url|trim('/', 'right') }}">
|
2024-08-21 18:28:40 +01:00
|
|
|
<title>{{ page.title }} - {{ site.name }}</title>
|
2024-08-21 12:00:00 +01:00
|
|
|
</head>
|
2024-09-10 09:59:24 +01:00
|
|
|
<body>
|
2024-08-21 12:00:00 +01:00
|
|
|
{% block body %}
|
2024-09-10 09:59:24 +01:00
|
|
|
<h1>{% block page_title %}{{ page.title }}{% endblock %}</h1>
|
2024-08-21 12:00:00 +01:00
|
|
|
|
2024-09-10 09:59:24 +01:00
|
|
|
{% block content_wrapper %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% endblock %}
|
2024-08-21 12:00:00 +01:00
|
|
|
|
2024-09-15 20:33:54 +01:00
|
|
|
<hr>
|
2024-08-21 12:00:00 +01:00
|
|
|
|
2024-09-10 09:59:24 +01:00
|
|
|
<footer>
|
|
|
|
<p>This website is open source. <a href="{{ site.github.url }}/edit/main/source/{{ page.relative_pathname }}">Improve this page</a>.</p>
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|
2024-08-21 12:00:00 +01:00
|
|
|
</body>
|
|
|
|
</html>
|