--- 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 | 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

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

{% tablericon "vinyl" %} Albums

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

{% tablericon "playlist" %} Tracks

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

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

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