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

{{ feed.title }}

{% if feed.description %}

{{ feed.description }}

{% endif %}

This feed contains {{ feed.articles|count }} articles.
Address of the feed: {{ feed.link }}.
Address of the site: {{ feed.site_link }}.
{% if feed.articles|count != 0 %} The last article was posted {{ elapsed.days }} day(s) ago.
Daily average: {{ average }}, between the {{ first_post_date.strftime('%Y-%m-%d') }} and the {{ end_post_date.strftime('%Y-%m-%d') }}. {% endif %}

{% if feed.articles|count != 0 %}
{{ tag_cloud|safe }}
{% endif %}
{% endblock %}