aboutsummaryrefslogtreecommitdiffstats
path: root/templates/event/index.html.tera
blob: 0a9f7d6382f4826a7d08bf5fd15dc5b3b9feaa32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base" %}
{% block content %}
  {% for event in events %}
    <h1>{{ event.name }}</h1>

    {% if event.description -%}
    <p>{{ event.description }}</p>
    {% endif -%}
  {% endfor %}

  <div id="program"></div>
{% endblock content %}