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

{{ page.header_title }}

{% endif %} {% if page.header_text %} {{ page.header_text|richtext }} {% endif %}
{% if page.header_image %}
{% image page.header_image width-600 class="img-fluid" %}
{% endif %}
{% elif page.header_type == 'hero' %}
{% if page.header_image %} {% image page.header_image fill-2000x600 class="w-100" style="height: 60vh; object-fit: cover;" %} {% endif %}
{% if page.header_title %}

{{ page.header_title }}

{% endif %} {% if page.header_text %}
{{ page.header_text|richtext }}
{% endif %}
{% elif page.header_type == 'html' %}
{{ page.header_html|safe }}
{% endif %} {% endif %} {# Content Sections #} {% for block in page.sections %} {% include_block block %} {% endfor %} {% endblock %} {% block extra_css %} {% endblock %}