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

{{ page.title }}

{{ page.start_date|date:"F j, Y · g:i A" }} {% if page.end_date %} — {{ page.end_date|date:"F j, Y · g:i A" }} {% endif %} 📍 {{ page.location }}
{% for block in page.body %} {% if block.block_type == "text" %}
{{ block.value|richtext }}
{% elif block.block_type == "map_embed" %} {% endif %} {% endfor %}
← Back to {{ page.get_parent.title }}
{% endblock %}