{% extends "cofcms/base.html" %} {% load wagtailimages_tags cofcms_tags %} {% block content %}

{{ page.title }}

{{ page.introduction|safe }}
{% for entry in page.entries %}

{{ entry.title }}

{% if entry.image %} {% image entry.image width-400 class="entry-img" %} {% endif %}
{{ entry.body|safe }}
{% if entry.links %} {% endif %}
{% endfor %}
{% endblock %}