{% extends "base.html" %}
{% load static wagtailcore_tags wagtailimages_tags %}
{% block content %}
{# Header Section #}
{% if page.header_type == 'hero' %}
{% elif page.header_type == 'split' %}
{% else %}
{% endif %}
{# Content Sections #}
{% for block in page.content %}
{% include_block block %}
{% endfor %}
{# Contact Widget #}
{% if page.show_contact %}
{% include "widgets/contact.html" %}
{% endif %}
{% endblock %}