{% extends 'base_content_page.html' %} {% load wagtailcore_tags feathers_tags %} {% block page_content %}

{{ page.title }}

{{ page.heading|richtext|unwrap_p|safe }}

{{ page.body|richtext }}
{{ form.media }}
{% csrf_token %} {% for field in form %}
{{ field|placeholder_from_help }} {% if field.errors %}
{{ field.errors.0 }}
{% endif %}
{% endfor %}
{% include "includes/contact_addresses.html" %} {% endblock page_content %}