{% extends "joyous/joyous_base.html" %} {% load wagtailcore_tags i18n %} {% block content %}

{{ page.title }}

{{ page.intro|richtext }} {% block cal_options %}
{% block events_view %} {% include "joyous/includes/events_view_choices.html" %} {% endblock events_view %}

{% blocktrans with day=day|date:"l, jS F Y" %}Events on {{ day }}{% endblocktrans %}

{% endblock cal_options %} {% block events_list %}
{% for title, event, url in events.all_events %} {% include "joyous/includes/event_item.html" %} {% endfor %}
{% endblock events_list %}
{% include "joyous/includes/calendar_export.html" %}
{% endblock %}