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

{{ feed.title }}.

{% for entry in entries %}
{{ entry.title }}
{{ entry.content | striptags | truncate(200) }}
{{ entry.updated | humanize_date }}
{% endfor %}
{% endblock %}