summaryrefslogtreecommitdiff
path: root/templates/blog-page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog-page.html')
-rw-r--r--templates/blog-page.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html
new file mode 100644
index 0000000..b8263e0
--- /dev/null
+++ b/templates/blog-page.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+
+{% block title %}{{ page.title }}{% endblock title %}
+
+{% block content %}
+<h1 class="title">
+ {{ page.title }}
+</h1>
+<p class="subtitle">{{ page.date | date(format="%-d %b %Y") }}</p>
+
+<hr>
+{{ page.content | safe }}
+<hr> <a href="../">Go back</a>
+{% endblock content %}