{% extends "base.html" %} {% load wagtailimages_tags wagtailcore_tags %} {% block content %}
{% picture page.image format-{avif,webp,jpeg} fill-{800x650,1920x900} sizes="100vw" 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 %} {% if page.promo_text %} {{ page.promo_text|richtext }} {% endif %}
{% endif %} {% if page.promo_image %}
{% picture page.promo_image format-{avif,webp,jpeg} fill-590x413-c100 %}
{% endif %}
{% if page.body %}
{{ page.body }}
{% endif %}
{% if page.featured_section_2 %}

{{ page.featured_section_2_title }}

{% for childpage in page.featured_section_2.specific.children|slice:"3" %} {% include "includes/card/location-card.html" with page=childpage %} {% endfor %} {% endif %}
{% if page.featured_section_3 %}

{{ page.featured_section_3_title }}

{% for childpage in page.featured_section_3.specific.children|slice:"6" %} {% include "includes/card/picture-card.html" with page=childpage portrait=True %} {% endfor %}
{% endif %}
{% endblock content %}