From c7cb022db471d75b2daba6c72e51abdc033f6ea7 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 28 Oct 2018 14:38:46 +0100 Subject: Proposition for the new stream page. --- src/web/templates/user_stream.html | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/web/templates/user_stream.html (limited to 'src/web/templates') diff --git a/src/web/templates/user_stream.html b/src/web/templates/user_stream.html new file mode 100644 index 00000000..3c20b241 --- /dev/null +++ b/src/web/templates/user_stream.html @@ -0,0 +1,51 @@ +{% extends "layout.html" %} +{% block content %} +
+ {% if category %} +
+
+

Articles from the category {{ category.name }}

+
+
+ {% endif %} + +
+
+ {{ pagination.info }} +
+
+ +
+
+ {{ pagination.links }} +
+
+ +
+ + + + + + + + + + {% for article in articles %} + + + + + + {% endfor %} + +
#{{ _('Title') }}{{ _('Published at') }}
{{ loop.index }}{{ article.title }}{{ article.date }}
+
+ +
+
+ {{ pagination.links }} +
+
+
+{% endblock %} -- cgit