{% for block in f.body %}
{% if block.block_type == "paragraph" %}
{{block.value.title}}
{{block.value.text}}
{% elif block.block_type == "link_list" %}
{{block.value.title}}
{% for item in block.value.links %}
{% include_block item with liclass="my-3" aclass="text-uppercase text-decoration-none brand text-white" %}
{% endfor %}
{% elif block.block_type == "text_list" %}
{{block.value.title}}
{% for item in block.value.texts %}
{% include_block item %}
{% endfor %}
{% else %}
{{block.value.title}}
{% for item in block.value.icons %}
{% include_block item %}
{% endfor %}
{% endif %}
{% endfor %}