{% extends "base.html" %} {% block style %} {% endblock %} {% macro row(item) %}
{{ item.start.strftime("%a, %d %b %Y") }}
{{ item.end.strftime("%a, %d %b") }}
{{ item.name }}
{{ item.topic }}
{{ item.location }}
{{ item.url }}
{% endmacro %} {% macro section(heading, item_list) %} {% if item_list %}

{{heading}}

{% for item in item_list %}{{ row(item) }}{% endfor %} {% endif %} {% endmacro %} {% block content %}

Conferences

← back to agenda | travel | conference | gaps

{{ section("Current", current) }} {{ section("Future", future) }} {{ section("Past", past|reverse) }}
{% endblock %}