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

{{ page.title }}

{% if page.body %}
{{ page.body|richtext }}
{% endif %} {% if page.get_children.live %}
{% for child in page.get_children.live.specific %} {{ child.title }} {% if child.start_date %} {{ child.start_date|date:"F j, Y" }} ยท {{ child.location }} {% endif %} {% endfor %}
{% endif %} {% endblock %}