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

Music

{{ albums[0].title }}

{{ albums[0].title }}

Released on {{ albums[0].releaseDate }}
{% if albums[0].description %}

{{ albums[0].description }}

{% endif %} {% if links %}
{% endif %}

{{ songs[0].title }}

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

{{ album.description|length > 50 ? album.description[:50] ~ '...' : album.description }}

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