{% for program in page.program %}
{% if program.block_type == "program_group" %}
{% endif %}
{% endfor %}
{% if program.value.perex %}
{% endif %}
{% for point in program.value.point_list %}
{% if point.icon %}
{% image point.icon max-150x150 as point_icon %}
{% endif %}
{% include 'styleguide2/includes/molecules/blocks/icon_title_text_block.html' with icon=point_icon url=point.url title=point.title text=point.text %}
{% endfor %}
{% elif program.block_type == 'program_group_popout' %}
{{ program.value.perex|richtext }}
{% include 'styleguide2/includes/organisms/popouts/popout_list.html' with categories=program.value.categories %}
{% elif program.block_type == 'program_group_crossroad' %}
{% for point in program.value.point_list %}
{% image point.image fill-512x512 as point_image %}
{% include 'styleguide2/includes/molecules/boxes/card_box.html' with url=point.page.url image=point_image header=point.title content=point.text date=point.page.date description_classes="!bg-grey-180" classes="drop-shadow" %}
{% endfor %}