From b2845952da634202be913fdf0e68e6cb55b67d80 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Tue, 28 Nov 2023 23:52:40 +0100 Subject: Initial commit --- templates/article.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 templates/article.html (limited to 'templates/article.html') diff --git a/templates/article.html b/templates/article.html new file mode 100644 index 0000000..27f23e9 --- /dev/null +++ b/templates/article.html @@ -0,0 +1,35 @@ +{% extends "base.html" %} + +{% block content %} +
+
+

{{ article.title }}

+ + {# Article meta information #} + + + +
+
    + {% for tag in article.tags %} +
  • + {{ tag.name }} +
  • + {% endfor %} +
+
+ +
+ {{ article.content | safe }} +
+
+
+{% endblock %} -- cgit v1.2.3