{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}helvetica{% endblock %} {% block content %} {% include 'header.html' %}

{{ page.title }}

{{ page.date }}

{% if page.tags.all.count %}
{% for tag in page.tags.all %} {{ tag }} {% endfor %}
{% endif %} {{ page.body|richtext }} {{ page.full_url }}
{% endblock %}