{% extends "base.html" %} {% block title %}RSS River{% endblock %} {% block content %}

RSS River — All Feeds

Newest items across every active feed.

Back to Feeds
{% if pagination.items %}
{% for item in pagination.items %}
{% if item.id not in read_ids %}NEW{% endif %} {{ item.feed.name }} {{ item.title or '(no title)' }}
{% if item.published_at %}{{ item.published_at.strftime('%m-%d %H:%M') }}{% else %}—{% endif %}
{% if item.summary %}

{{ item.summary[:200] }}{% if item.summary|length > 200 %}…{% endif %}

{% endif %}
{% endfor %}
{% if pagination.pages > 1 %} {% endif %} {% else %}
No items yet across any feed.
{% endif %} {% endblock %}