This commit is contained in:
kittywitch 2025-10-08 19:37:29 +00:00
parent 98c6d1e2ba
commit 50d2f16b35
11 changed files with 169 additions and 99 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>