Newer
Older
pre-www / src / layout / archive-contacts.twig
{% if paths_base == null %}
    {% set paths_base = '../..' %}
{% endif %}

{% extends "base.twig" %}

{% set bodyClasses = "has-primary-bg archive archive-contacts" %}

{% block content %}
    {% for block in post_type.pages[currentPage].blocks %}
        {% include '../blocks/'~block.key~'.twig' with {'block': block } %}
    {% endfor %}
    {% block posts %}{% endblock %}
    {% block pagination %}
        {% include "../blocks/pagination.twig" %}
    {% endblock %}
{% endblock %}