Made it look a bit nicer and added a cascading menu thing

This commit is contained in:
2025-10-17 17:48:37 +01:00
parent 5d51b7ecfa
commit c07c24e86f
13 changed files with 114 additions and 29 deletions

View File

@@ -1,13 +1,18 @@
<!DOCTYPE html>
<html>
<body>
<header>
{% include 'partials/site-wide-header.html' %}
</header>
Welcome to My Wiki Site!<br/>
Pages:<br/>
{{pages|safe}}
<footer>
{% include 'partials/site-wide-footer.html' %}
</footer>
</body>
<head>
{% include 'partials/head.html' %}
</head>
<body>
<header>
{% include 'partials/site-wide-header.html' %}
</header>
<span>
<h1>{{ config.name }}</h1>
{{config.description}}
</span>
<footer>
{% include 'partials/site-wide-footer.html' %}
</footer>
</body>
</html>