{% extends "base.html" %} {% load navigation_tags wagtailimages_tags %} {% block content %} {% image self.image fill-1920x600 as hero_img %} {% include "base/include/header-hero.html" %}
{% if page.introduction %}

{{ page.introduction }}

{% endif %}
{% if page.authors %}
{% for author in page.authors %}
{% image author.image fill-50x50-c100 class="blog-avatar" %} {{ author.first_name }} {{ author.last_name }}
{% endfor %}
{% endif %} {% if page.date_published %} {% endif %}
{{ page.body }} {% if page.get_tags %} Tagged with:
{% for tag in page.get_tags %} {{ tag }} {% endfor %} {% endif %}
{% endblock content %}