{% extends "base.html" %}
{% load static wagtailcore_tags wagtailimages_tags %}
{% block content %}
{# Header Section #}
{% if page.header_type != 'none' %}
{% if page.header_type == 'text_image' %}
{% elif page.header_type == 'hero' %}
{% elif page.header_type == 'html' %}
{% endif %}
{% endif %}
{# Content Sections #}
{% for block in page.sections %}
{% include_block block %}
{% endfor %}
{% endblock %}
{% block extra_css %}
{% endblock %}