--- title: Discography subtitle: Discog description: Records I have published over the years tags: - discography - releases - music - full-length - albums - EP video_path: image: /images/pages/jack-hamilton-CMnNiQBkwBI-unsplash.jpg ---

Most of my work

A slection of my work

{% assign sorted = site.albums | sort: 'date' | reverse %} {% for album in sorted %}

{{ album.title }}

{{ album.date | date: '%Y' }}

{% for track in album.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 %}

{% endfor %}
{{ album.title }}
{% endfor %} {% include streamer.html %} {% include footer.html %}