{% extends "base.html" %} {% block title %} | {{ feed.title }}{% endblock %} {% block content %}

{{ feed.title }} {% if not feed.updates_enabled %} - disabled {% endif %}

{% if feed.subtitle %} {{ feed.subtitle }} {% endif %} {% if feed.added %} Added: {{ feed.added.strftime('%Y-%m-%d, %T') }} {% endif %} {% if feed.last_exception %} Last exception: {{ feed.last_exception }} {% endif %}
{% for entry in entries %} {% if loop.index > 1 %}
{% endif %}

{{ entry.title }}

By {{ entry.author }} {% if entry.published %} @ {{ entry.published.strftime('%Y-%m-%d, %T') }} {% endif %} {% if entry.summary %}
Summary
{{ entry.summary | safe }}
{% endif %} {% if entry.content %}
Content
{{ entry.content[0].value | safe }}
{% endif %} {% endfor %}
{% endblock %}