From 01ccc02384a8b11d7ef33db2e13195d1e27bf850 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sat, 11 Apr 2015 14:22:44 +0200 Subject: removing unread page --- pyaggr3g470r/templates/unread.html | 51 -------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 pyaggr3g470r/templates/unread.html (limited to 'pyaggr3g470r/templates/unread.html') diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html deleted file mode 100644 index d6f51bff..00000000 --- a/pyaggr3g470r/templates/unread.html +++ /dev/null @@ -1,51 +0,0 @@ - {% extends "layout.html" %} -{% block content %} -
- {% if feeds|count == 0 %} - - {% else %} - - {% for feed in feeds|sort(attribute="title") %} -
-
-

{{ feed.title|safe }}

- - - - - -

{{ feed.articles|length }} {{ _('unread articles') }}.

-
-
- {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} -
- {% for n in range(number, number+3) %} -
- {% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title|safe }} - {% if feed.articles[n].readed %}

{% else %}{% endif %} -
{{ feed.articles[n].date | datetime }}
-
- {% endfor %} -
- {% endfor %} - {% if feed.articles|length % 3 != 0 %} -
- {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %} -
- {% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title|safe }} - {% if feed.articles[n].readed %}

{% else %}{% endif %} -
{{ feed.articles[n].date | datetime }}
-
- {% endfor %} -
- {% endif %} - {% endfor %} - {% endif %} -
-{% endblock %} -- cgit