{% if album.title %}

{{album.title}}

{% endif %} {% if album.artist %}

by {{album.artist}}

{% endif %} {% if album.artwork_preview %} {% else %} {% endif %}

    {% for track in album.tracks %} {% if not track.hidden %}
  1. {% if track.preview_mp3 %} {% endif %} {% if track.artist %} {{ track.artist }}: {% endif %} {% if track.title %} {{ track.title }} {% else %} (Track {{loop.index}}) {% endif %} {{track.duration}}
  2. {% endif %} {% endfor %}

made with pyBlamscamp