{% extends "layout.html" %} {% block content %}

{{ feed.title|safe }}

{% if nb_articles == -1 %}

{{ feed.articles|count }} articles.

{% else %}

Last {{ feed.articles|count }} articles. See all articles.

{% endif %}
{% if feed.articles|count == 0 %}

No articles.

{% else %} {% 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 }}
{% 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 }}
{% endfor %}
{% endif %} {% endif %}
{% endblock %}