{% extends "base.html" %} {% load static wagtailimages_tags %} {% block content %}
{% include "common/content.html" %} {% if page.body %}
{% endif %} {% for child in page.get_children.specific %}
{% if child.image %} {% image child.image width-300 as photo %}
{% endif %}
{{ child.title }}
{% include "common/content-details.html" with page=child %}

{{ child.get_short_body }}

{% endfor %}
{% endblock %}