{% extends "base.html" %} {% block title %}{{ '| '+ title }}{% endblock %} {% block content %}
{% include '_nav.html' %}
{% for article in content %}
{{ article.title }}
{{ article.artists | join(', ') }}
{% for article in content %} {% if article.dates %}
Date(s):
{{ article.dates | join(', ') }}
{% endif %} {% if article.times%}
Time(s):
{{ article.times | join(', ') }}
{% endif %}
Location(s):
{{ article.location[0] }}
{% endfor %}
˗ˏˋ ★ ˎˊ˗
{{ article.information }}
{% if article.bookUrl %}
↳ Book
{% endif %}
{% endfor %}
{% endblock content %}