15 lines
259 B
HTML
15 lines
259 B
HTML
{% extends "wagtail_base.html" %}
|
|
|
|
{% load util_tags %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "common/hero.html" %}
|
|
|
|
<div class="container">
|
|
{% for page in child_pages %}
|
|
{% include "common/listing-item.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock content %}
|