{% extends "layout.html" %} {% block content %}

Audio Archiv

{% if error is defined and error == true %}
{{ errorMessage }}
{% endif %}
{% if albums is defined %} {% for album in albums %}

{{ album.albumTitle|slice(0,22) }}{% if album.albumTitle|length > 22 %}...{% endif %}

{{ album.artist|slice(0,15) }}{% if album.artist|length > 15 %}...{% endif %}

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