From 89df2acac08a1feb106d4fa2a14397fb8d8f74f5 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 16 May 2019 14:01:04 +0200 Subject: [PATCH] Add article template --- themes/openAV-Luppp/templates/article.html | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 themes/openAV-Luppp/templates/article.html diff --git a/themes/openAV-Luppp/templates/article.html b/themes/openAV-Luppp/templates/article.html new file mode 100644 index 0000000..f4c5b62 --- /dev/null +++ b/themes/openAV-Luppp/templates/article.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% block content %} +
+ +
+
+
+
+
+
+

{{ article.title }}

+
+
+ Published on + +
By + {% for author in article.authors %} + {{ author }} + {% endfor %} +
+
+
+ {{ article.content }} +
+
+
+
+
+ +
+{% endblock %} \ No newline at end of file