{% for section in schema.values() %}

{{ section.title }}

{% for row in section.components|batch(2) %}
{% for column in row %}

{{ column.title }}

{% if column.text %}
{{ column.text }}
{% endif %} {% if column.data %} {% endif %}
{% endfor %}
{% endfor %}
Back to top
{% endfor %}