2024-08-21 11:00:00 +00: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-08-21 17:28:40 +00:00
<title> {{ page .title }} - {{ site .name }} </title>
2024-09-06 17:38:37 +00:00
<link rel="stylesheet" href="/dist/app.css">
2024-08-21 11:00:00 +00:00
</head>
2024-09-06 17:38:37 +00:00
<body class="dark:bg-black dark:text-white">
2024-08-21 11:00:00 +00:00
{% block body %}
2024-09-06 17:38:37 +00:00
<div class="mx-auto max-w-3xl">
<h1 class="text-4xl font-bold dark:text-white"> {% block page_title %} {{ page .title }} {% endblock %} </h1>
2024-08-21 11:00:00 +00:00
2024-09-06 17:38:37 +00:00
{% block content_wrapper %}
{% block content %} {% endblock %}
{% endblock %}
2024-08-21 11:00:00 +00:00
2024-09-06 17:38:37 +00:00
<hr class="my-10" />
2024-08-21 11:00:00 +00:00
2024-09-06 17:38:37 +00:00
<footer class="mb-6">
<p>This website is open source. <a class="text-primary underline hover:no-underline" href=" {{ site .github .url }} /edit/main/source/ {{ page .relative_pathname }} ">Improve this page</a>.</p>
</footer>
{% endblock %}
<div>
2024-08-21 11:00:00 +00:00
</body>
</html>