{% extends "partials/page.html.twig" %} {% set twigTemplate = 'archive.html.twig' %} {% set scope = 'archive' %} {% block content %}
{# Begin Page Header #} {% if gantry.config.get('content.' ~ scope ~ '.heading.enabled', '0') %} {% endif %} {# End Page Header #} {% if posts is not empty %} {# Begin Post Entries #}
{% for post in posts %}
{% include ['partials/content-' ~ scope ~ '.html.twig', (post.format) ? 'partials/content-' ~ post.format ~ '.html.twig' : '', 'partials/content.html.twig'] %}
{% endfor %}
{# End Post Entries #} {# Begin Pagination #} {% if pagination.pages and pagination.pages|length > 1 %} {% include 'partials/pagination.html.twig' %} {% endif %} {# End Pagination #} {% else %} {# No posts found #}

{{ __( 'Sorry, but there aren\'t any posts matching your query.', 'g5_akuatik' ) }}

{% endif %}
{% endblock %}