{% extends "page.html" %} {% block content_all%} {% block content_header %} {{ super.super() }} {% endblock content_header %} {% block content_body %} {% from 'includes/macros.html' import ci %} {% set news = articles | selectattr("category", "==", "Neues") | list | sort(reverse=true, attribute="date") %} {% for n in news %}

{{ n.title }}

{{ n.summary }}

Weiterlesen →

{% if n.featured_image %} {% set i = n.featured_image[0] %} {{ ci(i.pic, SITEURL + "/" + n.url, i.text, i.alt, i.credit, i.credit_link) }} {% endif %}
{% endfor %} {% endblock content_body %} {% block content_footer %} {% endblock content_footer %} {% endblock content_all%}