Made it look a bit nicer and added a cascading menu thing
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
</html>
|
||||
<head>
|
||||
{% include 'partials/head.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
{% include 'partials/site-wide-header.html' %}
|
||||
|
@@ -1,5 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% include 'partials/head.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
{% include 'partials/site-wide-header.html' %}
|
||||
|
@@ -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>
|
||||
|
2
templates/partials/head.html
Normal file
2
templates/partials/head.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<link href="/static/custom.css" rel="stylesheet">
|
||||
<meta charset='UTF-8'>
|
@@ -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/>
|
||||
|
@@ -1,4 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% include 'partials/head.html' %}
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
{% include 'partials/site-wide-header.html' %}
|
||||
|
Reference in New Issue
Block a user