feat: cleanup

This commit is contained in:
Kat Inskip 2025-10-08 12:37:06 -07:00
parent 57361be9e3
commit 3b1c786fd6
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
11 changed files with 173 additions and 100 deletions

View file

@ -1,24 +1,35 @@
<!DOCTYPE html>
{% include "love.html" %}
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ config.extra.site_title }}</title>
{% include "head.html" %}
</head>
<head>
<meta charset="utf-8">
<title>
{% if section is defined and section.title is defined and section.title is string %}
{{ section.title }} -
{% elif page is defined and page.title is defined and page.title is string %}
{{ page.title }} -
{% endif %}
{{ config.extra.site_title }}
</title>
{% include "head.html" %}
</head>
<body>
<body>
<div>
<header>
{% include "header.html" %}
</header>
<main>
{% block content %} {% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
</body>
<header>
{% include "header.html" %}
</header>
<main>
{% block content %} {% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
{% include "nonoscript.html" %}
</body>
</html>