{% extends "base.html" %} {% load wagtailcore_tags %} {% load wagtailcore_tags wagtailimages_tags %} {% load wagtailvideos_tags %} {% block page %}{% endblock page %} {% block body_class %}template-contentitemindexpage{% endblock %} {% block inner %}

{{ page.title }}

{{ page.date }}

{% if page.hero_image %}
{% image page.hero_image fill-320x240 %}

{{ page.hero_image.caption }}

{% endif %} {% with categories=page.categories.all %} {% if categories %}

Posted in:

{% endif %} {% endwith %} {% if page.tags.all.count %}

Tags

{% for tag in page.tags.all %} {% endfor %}
{% endif %}
{{ page.intro }}
{{ page.body|richtext }} {% for item in page.gallery_images.all %}
{% image item.image fill-320x240 %}

{{ item.caption }}

{% endfor %}

Return to article list

{% endblock inner %}