{% extends "base.html" %} {% from "macros.html" import conference_row with context %} {% block style %} {% set column_count = 6 %} {% endblock %} {% macro section(heading, item_list, badge) %} {% if item_list %}

{{ heading }}

{% for item in item_list %}{{ conference_row(item, badge) }}{% endfor %} {% endif %} {% endmacro %} {% block content %}

Conferences

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