{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-blogpage{% endblock %} {% block content %}

{{ page.title }}

{{ page.date }}

{% with authors=page.authors.all %} {% if authors %}

Posted by:

{% endif %} {% endwith %}
{{ page.intro }}
{{ page.body }} {% for item in page.gallery_images.all %}
{% image item.image fill-320x240 %}

{{ item.caption }}

{% endfor %}

Return to blog

{% with tags=page.tags.all %} {% if tags %}

Tags

{% for tag in tags %} {{ tag }} {% endfor %}
{% endif %} {% endwith %} {% endblock %}