From 62d21db0ea90aec7f653d0cc831d21f534ba638e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 11 Nov 2016 11:41:26 +0100 Subject: Added a template for articles of public feeds. --- src/web/templates/article_pub.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/web/templates/article_pub.html (limited to 'src/web/templates') diff --git a/src/web/templates/article_pub.html b/src/web/templates/article_pub.html new file mode 100644 index 00000000..f9275217 --- /dev/null +++ b/src/web/templates/article_pub.html @@ -0,0 +1,24 @@ +{% extends "layout.html" %} +{% block content %} +
+
+

{{ article.title|safe }}

+

{{ _('from') }} {{ article.source.title }}

+
{{ article.date | datetime }}
+
+
+ {{ article.content | safe }} +
+ +
+{% endblock %} -- cgit