From 3d50e7b1d07b22da293099b3814130e7736254df Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 13 Nov 2016 18:37:35 +0100 Subject: Added a column for the date of the articles. --- src/web/templates/feed.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/web/templates/feed.html') diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index d8dd7f5c..22bf0372 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -4,8 +4,10 @@

{{ feed.title }}

{% if feed.description %}

{{ feed.description }}

{% endif %} - - + {% if current_user.is_authenticated %} + + + {% endif %}

@@ -49,20 +51,20 @@ {{ _('Article') }} + {{ _('Date') }} {% for article in articles %} {{ article.title }} + {{ article.date }} {% endfor %}

- -
{% if articles | count != 0 %}
{{ tag_cloud | safe }}
-- cgit