News Feed Hub
{% if has_articles %} {% for category, articles in categorized_articles.items() %}
{{ category }}
{% for article in articles %}
{% if article.image != "svg" %}
{% else %}
No Image
{% endif %}
{{ article.title }}
{{ article.description }}
Published: {{ article.published }}
{% endfor %}
{% endfor %} {% else %}
No articles available yet. Try refreshing the page.
{% endif %}