{% extends "layout.html" %} {% block title %}Artists{% endblock %} {% block content %}

Artists

{% for artist in artist_data %}

{{ artist.name }}

{% for image in artist.images %}
{% endfor %}
{% endfor %}
{% endblock %}