{% extends "base.html" %} {% load navigation_tags wagtailimages_tags %} {% block content %} {% include "base/include/header-blog.html" %}
{% 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 %}
{{ page.body }} {% if page.get_tags %}

Find more blog posts with similar tags

Filter blog posts by tag {% for tag in page.get_tags %} {{ tag }} {% endfor %}
{% endif %}
{% endblock content %}