{% extends "base.html" %} {% load wagtailimages_tags wagtailcore_tags %} {% block content %}
{% image page.image fill-1920x600 as image %}

{{ page.title }}

{{ page.hero_text }}

{{ page.hero_cta }}
{% if page.promo_image or page.promo_title or page.promo_text %}
{% image page.promo_image fill-200x200-c100 %}

{{ page.promo_title }}

{{ page.promo_text|safe }}
{% endif %}
{% if page.featured_section_1 %}

{{ page.featured_section_1_title }}

{% endif %}
{% if page.body %}
{{ page.body }}
{% endif %}
{% if page.featured_section_2 %}

{{ page.featured_section_2_title }}

{% endif %}
{% if page.featured_section_3 %}

{{ page.featured_section_3_title }}

{% endif %}
{% endblock content %}