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,3 +1,8 @@
<!DOCTYPE html>
</html>
<head>
{% include 'partials/head.html' %}
</head>
<body>
<header>
{% include 'partials/site-wide-header.html' %}

View File

@@ -1,5 +1,8 @@
<!DOCTYPE html>
<html>
<head>
{% include 'partials/head.html' %}
</head>
<body>
<header>
{% include 'partials/site-wide-header.html' %}

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>

View File

@@ -0,0 +1,2 @@
<link href="/static/custom.css" rel="stylesheet">
<meta charset='UTF-8'>

View File

@@ -1,4 +1,4 @@
<a href='/'>Home Page</a>
/
<a href='/create_page'>Create New Page</a>
<a href='/create_page'>Create Page</a>
{{functions.dropdown_menu(menu)|safe}}
<hr/>

View File

@@ -1,4 +1,8 @@
<!DOCTYPE html>
<html>
<head>
{% include 'partials/head.html' %}
</head>
<body>
<header>
{% include 'partials/site-wide-header.html' %}