{% extends "wagtail_base.html" %}
{% block content %}
{% include "common/hero.html" %}
{% if page.body_html %}
{{ page.body_html|safe }}
{% endif %}
{% for page in child_pages %}
{% include "common/listing-item.html" %}
{% endfor %}
{% endblock content %}