summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-06-06 20:11:22 +0200
committerHarald Eilertsen <haraldei@anduin.net>2020-06-06 20:11:22 +0200
commit043710894c648f91a3c9acd11800d67f3b872670 (patch)
tree0d1889f6db929b8c41f3b81816fa8df335202a1a /templates
parent53730f5b5d78cd4ecbe1b732efb84e38b62dffe7 (diff)
downloadrabalderz-043710894c648f91a3c9acd11800d67f3b872670.tar.gz
rabalderz-043710894c648f91a3c9acd11800d67f3b872670.tar.bz2
rabalderz-043710894c648f91a3c9acd11800d67f3b872670.zip
Add a site header.
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html2
-rw-r--r--templates/header.html4
2 files changed, 5 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index dfd162d..0724201 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -14,7 +14,7 @@
<body>
- {#% include header.html %#}
+ {% include "header.html" %}
<div class="page-content">
<div class="wrapper">
diff --git a/templates/header.html b/templates/header.html
new file mode 100644
index 0000000..80e6eb5
--- /dev/null
+++ b/templates/header.html
@@ -0,0 +1,4 @@
+<header id="site-header" class="site-header">
+ <div class="site-title">{{ config.title }}</div>
+ <div class="site-description">{{ config.description }}</div>
+</header>