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

{{ feed.title }}

{% if not feed.updates_enabled %}Disabled{% endif %} {% if feed.last_exception %}Last exception: {{ feed.last_exception }}{% endif %}
{% if not feed.updates_enabled %}
{% else %}
{% endif %} Whitelist Blacklist Custom message
{% for entry in entries %}
{% if entry|entry_is_blacklisted %} Blacklisted {% endif %} {% if entry|entry_is_whitelisted %} Whitelisted {% endif %}

{{ entry.title }}

{% if entry.author %} By {{ entry.author }} @ {% endif %} {% if entry.published %} {{ entry.published.strftime('%Y-%m-%d, %T') }} {% endif %} {% if entry.summary%}
{{ entry.summary | discord_markdown }}
{% elif entry.content[0].value %}
{{ entry.content[0].value | discord_markdown }}
{% else %}
No content available.
{% endif %}
{% endfor %} {% endblock %}