{% extends "layout.html" %} {% block content %} {% if error is defined and error == true %}
{{ errorMessage }}
{% endif %}
{% if albums is defined %} {% for album in albums %}

{{ album.albumTitle }}

{{ album.artist }}

{% endfor %} {% endif %}
{% endblock %}