{% extends "styleguide2/simple_page.html" %} {% load wagtailcore_tags %} {% block content %} {% block navbar %} {% include 'styleguide2/includes/organisms/layout/district/navbar.html' with selected_item=page.get_menu_title %} {% endblock %} {% block header %} {% include 'styleguide2/includes/organisms/header/photo_header.html' with title=page.title main_image=page.main_image description=page.perex %} {% endblock %}
{% block inner_content %}
{% for block in page.content %} {% include_block block with block_id=block.id %} {% endfor %}
{% if page.map_title %}

{{ page.map_title }}

{% endif %}
{% if page.category_list_title %}

{{ page.category_list_title }}

{% endif %}
{% for category, features in features_by_category %}

{{ category.name }}

{% endfor %}
{% if page.content_after %}
{% for block in page.content_after %} {% include_block block with block_id=block.id %} {% endfor %}
{% endif %} {% if page.content_footer %}
{% for block in page.content_footer %} {% include_block block with block_id=block.id %} {% endfor %}
{% endif%}
{% endblock %}
{% endblock %} {% block scripts %} {% endblock %}