{{ album.title }}
{{ album.date | date: '%Y' }}
{% for release in site.albums %} {% if release.slug == album.album %} {% for track in release.tracks %}
{{ track.common.track.no }}. {{ track.common.title }}
{% assign round_seconds = track.format.duration | round %}{% assign minutes = round_seconds | divided_by: 60 %}{% assign leftover_seconds = minutes | times: 60 %}{{ minutes }}:{% assign seconds_without_zero = round_seconds | minus: leftover_seconds %}{% if seconds_without_zero < 10 %}0{% endif %}{{ seconds_without_zero }}{% if track.common.genre != null %} |
{{ track.common.genre }} {% endif %}