zet.oliverdavies.uk/source/_layouts/base.html.twig

28 lines
1,008 B
Twig
Raw Normal View History

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>
<link rel="stylesheet" href="/dist/app.css">
2024-08-21 11:00:00 +00:00
</head>
<body class="dark:bg-black dark:text-white">
2024-08-21 11:00:00 +00:00
{% block body %}
<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
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
2024-08-21 11:00:00 +00:00
<hr class="my-10" />
2024-08-21 11:00:00 +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>