{% extends "partials/page.html.twig" %} {% set twigTemplate = 'index.html.twig' %} {% set scope = 'blog' %} {% block content %}
{# Begin Page Header #} {% if gantry.config.get('content.' ~ scope ~ '.heading.enabled', '0') and gantry.config.get('content.' ~ scope ~ '.heading.text') is not empty %} {% endif %} {# End Page Header #} {# 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 #}
{% endblock %}