{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block title %}{{ page.seo_title|default:page.title }}{% endblock %} {% block content %} {% if page.show_title %}

{{ page.title }}

{% endif %}
{% for tag in page.tags.all %} {{ tag }} {% endfor %} {{ page.date|date }}
{% image page.image fill-1320x250 class="img-fluid" %}
{{ page.introduction }}
{% for block in page.body %} {% include_block block %} {% endfor %} {% endblock %}