{% extends "layout.html" %} {% import "macros/_event.html" as misc %} {% block page_title %}Past events{% endblock %} {% block body_class %}history home{% endblock %} {% block content %} {% cache 300, 'history-page' %}
{% if events_past %}

Past events

{% for event in events_past %} {{ misc.render_home_event(event) }} {% endfor %}
{% endif %}
{% endcache %} {% endblock %}