{% extends "district/base.html" %} {% load wagtailcore_tags wagtailimages_tags shared_filters %} {% block subheader %} {% image page.get_background_photo width-1920 as bg_img %}

{{ page.title }}

{{ page.perex }}

{% endblock %} {% block container_spacing %}pt-8 lg:pb-16{% endblock %} {% block content %}
{{ page.text | richtext }} {% for block in page.content %} {% include_block block with block_id=block.id %} {% endfor %} {% if page.has_calendar %} {% include "shared/small_calendar_snippet.html" with events=page.calendar.current_events %} {% endif %}
{% for block in page.sidebar_content %} {% include_block block %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% include "shared/followus_snippet_column.html" %}
{% endblock %}