{% if feed.feed %} {% if feed.feed.title %}

{{ feed.feed.title }}

{% endif %} {% if feed.feed.subtitle %}

{{ feed.feed.subtitle }}

{% endif %} {% endif %}

This display was generated by Celery, using Iron.io on the backend and running on a Heroku dyno in the background, outside the request loop. You can see how it was built by following the tutorial.

{% for item in feed.entries %}

{{ item.title }}

{{ item.summary|safe }}

{% endfor %} {% if feed.exception %}

Oops. Error parsing the feed.

Error: {{ feed.exception }}

{% endif %}