{% extends "district/base.html" %} {% load wagtailcore_tags %} {% block subheader %} {% for block in page.subheader %} {% include_block block %} {% endfor %} {% endblock subheader %} {% block container_spacing %}pt-8 lg:py-16{% endblock %} {% block content %} {% if page.content %}
{% for block in page.content %} {% include_block block %} {% endfor %}
{% endif %} {% if page.articles %}

{{ page.articles_title }}

{% for a in page.articles %} {% include "shared/article_preview.html" with article=a %} {% endfor %}
{% include "shared/more_articles_snippet.html" %}
{% endif %} {% if page.election_countdown_datetime %}
{% include "shared/election_countdown_snippet.html" %}
{% endif %} {% if page.show_calendar_on_hp %}
{% include "shared/calendar_current_events_snippet.html" with calendar=page.calendar %}
{% endif %} {% if page.newsletter_info %}
{% include "shared/blocks/newsletter_subscription_block.html" with value=page.newsletter_info %}
{% endif%} {% include "shared/followus_snippet.html" %} {% endblock %}