From aac8e351f6c48362e3bde507901b5ccca375ffe7 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 1 May 2019 19:21:35 +0200 Subject: [PATCH] Add a status-update-page template --- blog/templates/status-update-page.html | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 blog/templates/status-update-page.html diff --git a/blog/templates/status-update-page.html b/blog/templates/status-update-page.html new file mode 100644 index 00000000..95ad24ce --- /dev/null +++ b/blog/templates/status-update-page.html @@ -0,0 +1,39 @@ +{% extends "second-edition/base.html" %} + +{% import "macros.html" as macros %} + +{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} + +{% block main %} +

{{ page.title }}

+ + {{ page.content | safe }} + +
+

Thank You!

+

I want to thank all the people who support me on Donorbox, Patreon, and Liberapay. It means a lot to me!

+
+{% endblock main %} + +{% block after_main %} +
+ +
+
+

Comments

+ {{ macros::utterances() }} +
+ +{% endblock after_main %} + +