--- 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 --- {% capture js %} {% render "../../../assets/scripts/media-toggles.js" %} {% endcapture %}

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

{% render "partials/widgets/now-playing.liquid" %}

{% 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 %}
{% if albumReleases.size > 0 %}

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

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