summaryrefslogtreecommitdiff
path: root/mod/web/blog/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'mod/web/blog/templates/post.html')
-rw-r--r--mod/web/blog/templates/post.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/mod/web/blog/templates/post.html b/mod/web/blog/templates/post.html
new file mode 100644
index 0000000..b1981e4
--- /dev/null
+++ b/mod/web/blog/templates/post.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+{% block title%}
+ {{ page.title }} - {{ super() }}
+{% endblock title %}
+
+{% block content %}
+
+<h1 style="text-align: center; margin-top: 1em;">{{ page.title }}</h1>
+<article>
+ {{ page.content | safe }}
+</article>
+{% endblock content %}