This commit is contained in:
Kat Inskip 2025-07-08 11:51:11 -07:00
parent cfa8c8d479
commit 7d9d67bede
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
4 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ section.title }} - {{ config.extra.site_title }}</title>
{% include "head.html" %}
</head>
<body>
<div>
<header>
{% include "header.html" %}
</header>
<main>
{% block content %} {% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
</body>
</html>