{% if logo %}
{% endif %}
{{ name }}
{% for section in schema.values() %}
{{ section.title }}
{% for comp in section.components %}
{{ comp.title }}
{% endfor %}
{% endfor %}
{% 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 %}