{% import "macros/paginator.twig" as pagination %} {% extends "base.twig" %} {% block page_title %} {{ i18n.getMessage("news_title") }} {% endblock %} {% block page_content %} {% if articles|length == 0 %} {{ i18n.getMessage("news_no_items") }} {% endif %} {% for article in articles %}

{{ article.title }}

{{ article.date }}

{{ article.teaser|raw }}

Mehr

{% endfor %} {{ pagination.paginator(paginator) }} {% endblock %}