--- title: Music description: This is everything I've been listening to recently — it's collected in a database as I listen to it and displayed here. layout: default permalink: "/music/index.html" updated: "now" schema: music-index ---

{{ title }}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See more of the artists, albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.

You can also take a look at the concerts I've been to.

{% render "partials/blocks/now-playing.liquid", music:music %}

{% tablericon "microphone-2" "Artists" %} Artists

{% render "partials/media/grid.liquid", data:music.week.artists, shape: "square", count: 8, loading: "eager" %}

{% tablericon "vinyl" "Albums" %} Albums

{% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %}

{% tablericon "playlist" "Tracks" %} Tracks

{% render "partials/media/music/recent", data:music.recent %}
{% render "partials/media/music/chart.liquid", data:music.week.tracks, mostPlayed:music.week.tracks[0].plays, count: 10 %}
{% if albumReleases.size > 0 %}

{% tablericon "calendar-time" "Anticipated albums" %} Anticipated albums

{% render "partials/media/grid.liquid", data:albumReleases, shape: "square", count: 8 %} {% endif %}