{% extends "base.html" %} {% load wagtailimages_tags %} {% block content %}

{{ page.title }}

{% image self.image fill-600x600 %}
{% for tag in page.get_tags %} {{ tag }} {% endfor %} {{ page.date_published }} {% for author in page.authors %}
  • {{ author }}
  • {% endfor %} {{ page.body }} {% endblock content %}