{% extends "base.html" %} {% block title %}{{ '| '+ title }}{% endblock %} {% block content %}
{% include '_nav.html' %}
{% for article in content %}
{% if article.title == 'This Is How I Roll' %}
This Is How 👁️ Roll
{% else %}
{{ article.title }}
{% endif %}
{{ article.artists | join(', ') }}
{% if article.bookUrl %} {% endif %}
{% 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 | replace('\n', '
') | safe }}
{% if article.title == "Noire (France)" %}
{% endif %} {% if article.title == "Next-Gen Creators: A Networking Journey for Europe's Digital Art and Tech" %}
{% endif %}
{% endfor %}
{% endblock content %}