{% extends "base.html" %} {% load static wagtailcore_tags wagtailimages_tags %} {% block content %}
{# Header Section #} {% if page.header_type == 'hero' %}

{{ page.header_title }}

{{ page.header_text|richtext }}
{% elif page.header_type == 'split' %}

{{ page.header_title }}

{{ page.header_text|richtext }}
{% if page.header_image %} {% image page.header_image fill-600x400 %} {% endif %}
{% else %}

{{ page.header_title }}

{{ page.header_text|richtext }}
{% endif %} {# Content Sections #} {% for block in page.content %} {% include_block block %} {% endfor %} {# Contact Widget #} {% if page.show_contact %} {% include "widgets/contact.html" %} {% endif %}
{% endblock %}