{# Zone layout template for Page fieldType #}
{# This zone layout has 2 zones (1 on the left, 1 on the right). #}
{# Iterating over available blocks in 1st zone. #}
{# Blocks are added in the admin interface. #}
{% if zones[0].blocks %}
{% for block in zones[0].blocks %}
{{ render(
controller(
"ez_page:viewBlock",
{
'block': block
}
)
) }}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% endif %}