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

RSS River

Newest items across all active feeds, newest first.

Feeds
{% if pagination.items %}
{% for item in pagination.items %} {% set is_unread = item.id not in read_ids %}
{% if item.image_url %} {% endif %}
{% if is_unread %} 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[:300] }}

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