{% extends "base.html" %} {% block page_title %}Projects{% endblock %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{{ page.title }}

{% if page.icon %}
{% image page.icon max-210x235 as page_icon %} {{ page_icon.alt }} {{ page_icon.alt }}
{% else %}
{% endif %}

{{ page.title }}

{% if page.introduction %}
{{ page.introduction }}
{% endif %}
{% include "utils/includes/funding.html" %}
{% with contact_details=page.contact_details.all %} {% if contact_details %}
Get the word out
{% for contact in contact_details %} {% endfor %} {% endif %} {% endwith %}
{% include "projects/includes/project_status.html" %} {{ page.body }} {% if page.category_options.all %}
{% regroup page.category_options by category as categories %} {% for category, options in categories %}

{{ category.name }}

    {% for option in options %}
  • {{ option.value }}
  • {% endfor %}
{% endfor %}
{% endif %} {% if page.news_mentions.all %}

We wrote about it

{% endif %}
{% include "includes/relatedcontent.html" with related_pages=page.related_pages.all %} {% endblock content %}