{% for block in page.people %}
{% if block.block_type == "people_group" %}
{% for person_page in block.value.person_list %}
{% image person_page.profile_image fill-480x480 as profile_image %}
{% include 'main/includes/molecules/contact/contact_person_large_box.html' with image=profile_image name=person_page.title function=person_page.position telephone=person_page.phone mail=person_page.email url=person_page.url %}
{% endfor %}
{% endif %}
{% endfor %}
{% for block in page.people %}
{% if block.block_type == "team_group" %}
{% for team in block.value.team_list %}
{% if team.value.headline %}
{{ team.value.headline }}
{% endif %}
{% for card in team.value.card_items %}
{% image card.value.image max-512 as card_image %}
{% firstof card.value.page.url card.value.link as card_url %}
{% include 'main/includes/molecules/boxes/card_box.html' with image=card_image header=card.value.title content=card.value.txt url=card_url %}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}