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