{% extends "base.html" %} {% block content %}
{{ image(page.image, "fill-1920x600", class="hero-image", alt="") }}

{{ page.title }}

{{ page.hero_text }}

{% if page.hero_cta_link %} {{ page.hero_cta }} {% else %} {{ page.hero_cta }} {% endif %}
{% if page.promo_image or page.promo_title or page.promo_text %}
{% if page.promo_title %}

{{ page.promo_title }}

{% endif %} {{ page.promo_text|richtext if page.promo_text }}
{% endif %} {% if page.promo_image %}
{{ image(page.promo_image, "fill-590x413-c100") }}
{% endif %}
{% if page.body %}
{{ page.body }}
{% endif %}
{% if page.featured_section_2 %}

{{ page.featured_section_2_title }}

{% for page in page.featured_section_2.specific.children()[:3] %} {% include "includes/card/location-card.html" %} {% endfor %} {% endif %}
{% if page.featured_section_3 %}

{{ page.featured_section_3_title }}

{% for page in page.featured_section_3.specific.children()[:6] %} {% set portrait=True %} {% include "includes/card/picture-card.html" %} {% endfor %}
{% endif %}
{% endblock content %}