{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags static %} {% block content %}
{{ page.display_date|date:"D, Y-m-d H:i" }} {% if page.authors.all %} | By: {% for author in page.authors.all %} {{ author.author }} {% endfor %} {% endif %}
{% if page.introduction %}

{{ page.introduction }}

{% endif %}
{% include_block page.body %}
{% if page.news_types.all %} {% endif %} {% if page.related_projects.all %}

Projects Mentioned

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