{% 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 %}
{% for news_type in page.news_types.all %}
- {{ news_type }}
{% endfor %}
{% 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 %}