{% extends "base.html" %} {% block body %}

{{ feed.title }}.

{% for entry in entries %}
{{ entry.title }}
{{ entry.content | striptags | truncate(200) }}
{{ entry.date().to('local').humanize(locale='fr') }}
{% endfor %}
{% endblock %}