{% extends "base.html" %} {% block title %}{{ item.title or 'RSS item' }}{% endblock %} {% block content %}

{{ item.title or '(no title)' }}

from {{ item.feed.name }} {% if item.author %}· by {{ item.author }}{% endif %} {% if item.published_at %}· {{ item.published_at.strftime('%Y-%m-%d %H:%M UTC') }}{% endif %}

{% if item.link %}

Read original on {{ item.feed.name }}

{% endif %}
Back to {{ item.feed.name }} River
{% if item.content_html %} {{ item.content_html|safe }} {% elif item.summary %} {{ item.summary|safe }} {% else %} No content — open the original link to read on the source site. {% endif %}
{% endblock %}