News Feed Hub

{% if loading %}
{% endif %} {% if has_articles %}
{% for category, articles in categorized_articles.items() %}
{{ category }}
{% set seen_articles = [] %} {% for article in articles %} {% set article_key = article.title + '|' + article.link + '|' + article.published %} {% if article_key not in seen_articles %}
{% if article.image != "svg" %} Article Image {% else %} No Image {% endif %}
{{ article.description }}
Published: {{ article.published }}
{% set seen_articles = seen_articles + [article_key] %} {% endif %} {% endfor %}
{% endfor %}
{% else %} {% if not loading %}
No articles available yet. Loading new feeds...
{% endif %} {% endif %}