{% extends 'templates/default.twig' %} {% block javascripts %} {% endblock %} {% block title %}Music Design #2{% endblock %} {% block content %}

Music

{{ albums[0].title }}

{{ albums[0].title }}

{% if albums[0].description %}

{{ albums[0].description }}

{% endif %}
    {% for song in songs %}
  • {{ song.track_order }}. {{ song.title }}
  • {% endfor %}
{% for album in albums %}
{{ album.title }}
{{ album.title }} ({{ album.releaseYear }})
{% endfor %}
{% endblock %}