{% extends "page.html" %} {% block content_body %} {% set selector_value = page.card_selector_value if page.card_selector_value is defined else page.title %}
{% set article_list = [] %} {% for article in articles if article[page.card_selector_key] == selector_value %}{% do article_list.append(article) %}{% endfor %} {% for article in article_list | sort(attribute="order") %}

{{ article.title }}

{% if article.titelbild %} Titelbild zu "{{ article.title }}" {% endif %} {# {% if article.summary %}

{{ article.summary }}

{% endif %} #}
{% endfor %}
{% endblock content_body %} {% block content_footer %} {#{% debug %}#} {% endblock content_footer %}