{% extends "base.html" %} {% block title %}rssume - {{ feed_name }}{% endblock %} {% block content %}

{{ feed_name }}

{{ articles | length }} articles

← Back RSS Feed
{% for article in articles %}

{{ article.title }}

{% if article.translated %} Translated {% endif %} {% if article.summary %} AI Summary {% endif %} {% if article.source_lang %} {{ article.source_lang }} {% endif %}
{% if article.summary %}
[AI 摘要] {{ article.summary }}
{% endif %}
View content
{{ article.content | truncate(length=1000) }}
{% if article.translated %}
Show original
{{ article.original_content | truncate(length=1000) }}
{% endif %}
{% endfor %} {% if articles | length == 0 %}

No articles yet

Articles will appear here once the feed is polled.

{% endif %} {% endblock %}