{% extends "base.html" %} {% block title %}Redax-WP — History{% endblock %} {% block content %}

📋 Veröffentlichte Artikel

{% for art in articles %}
{% if art.article_type == 'rss' %}📡{% else %}🤖{% endif %}
{{ art.title or 'Kein Titel' }}
{{ art.published_at[:16] if art.published_at else '' }} {% if art.category_id %} · Kategorie {{ art.category_id }}{% endif %}
{% if art.wp_url %} 🔗 Artikel {% endif %}
{% else %}
Noch keine veröffentlichten Artikel.
{% endfor %}
{% endblock %}