{% extends "base.html" %} {% load wagtailcore_tags %} {% block page %}{% endblock page %} {% block body_class %}template-contentitemindexpage{% endblock %} {% block inner %}

{{ page.title }}

{{ page.intro|richtext }}
{% for post in page.get_children %} {% with post=post.specific %}

{{ post.title }}

{{ post.intro }}

{{ post.body|richtext }} {% endwith %} {% endfor %} {% endblock inner %}