summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
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>