{% extends "base.html" %} {% block title %}{{ '| '+ title }}{% endblock %} {% block content %}
{% include '_nav.html' %}
{% for article in content %}
{{ article.title }}
{{ article.artists | join(', ') }}
{{ article.information }}
{% if article.bookUrl %}
BOOK ↗
{% endif %}
{% endfor %}

{% endblock content %}