{% 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 'styleguide2/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.headline %}
{{ team.headline }}
{% endif %}-
{% for card in team.card_items %}
{% image card.image max-512x512 as card_image %}
{% firstof card.page.url card.link as card_url %}
{% include 'styleguide2/includes/molecules/boxes/card_box.html' with image=card_image header=card.title content=card.text url=card_url description_classes='!bg-grey-180' %}
{% endfor %}