{% 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 %}

{# Add a button to get the summary #} {% if entry.summary %} Summary {% endif %} {# Add a button to get the content #} {% if entry.content %} Content {% endif %}

{% if entry.summary %}
{{ entry.summary | safe }}
{% endif %} {% if entry.content %}
{{ entry.content[0].value | safe }}
{% endif %} {% endfor %}
{% endblock %}