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 %}