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

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

  <div id="program"></div>
  <script src="/js/app.js"></script>
{% endblock contents %}