diff --git a/src/data/music.js b/src/data/music.js
index ae9c94ed..6ab2069e 100644
--- a/src/data/music.js
+++ b/src/data/music.js
@@ -43,10 +43,6 @@ export default async function fetchMusicData() {
monthArtists,
monthAlbums,
monthGenres,
- threeMonthTracks,
- threeMonthArtists,
- threeMonthAlbums,
- threeMonthGenres,
] = await Promise.all([
fetchDataFromView('recent_tracks'),
fetchDataFromView('week_tracks'),
@@ -57,10 +53,6 @@ export default async function fetchMusicData() {
fetchDataFromView('month_artists'),
fetchDataFromView('month_albums'),
fetchDataFromView('month_genres'),
- fetchDataFromView('three_month_tracks'),
- fetchDataFromView('three_month_artists'),
- fetchDataFromView('three_month_albums'),
- fetchDataFromView('three_month_genres'),
])
return {
@@ -83,15 +75,6 @@ export default async function fetchMusicData() {
.reduce((acc, track) => acc + track.plays, 0)
.toLocaleString('en-US'),
},
- threeMonth: {
- tracks: threeMonthTracks,
- artists: threeMonthArtists,
- albums: threeMonthAlbums,
- genres: threeMonthGenres,
- totalTracks: threeMonthTracks
- .reduce((acc, track) => acc + track.plays, 0)
- .toLocaleString('en-US'),
- },
}
} catch (error) {
console.error('Error fetching and processing music data:', error)
diff --git a/src/pages/dynamic/music/albums/3-months.html b/src/pages/dynamic/music/albums/3-months.html
deleted file mode 100644
index adec2b1c..00000000
--- a/src/pages/dynamic/music/albums/3-months.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Albums / 3 months
-description: All of the albums I've listened to over the last 3 months.
-layout: default
-pagination:
- data: music.threeMonth.albums
- size: 24
-permalink: "/music/albums/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.threeMonth.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | mediaLinks: "genre", 5 }}.
-
See theartists or tracks I've listened to over the last 3 months. Or take a look at what I've listened tothis week or this month.
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/albums/this-month.html b/src/pages/dynamic/music/albums/this-month.html
deleted file mode 100644
index 055f90dc..00000000
--- a/src/pages/dynamic/music/albums/this-month.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Albums / This month
-description: All of the albums I've listened to over the past month.
-layout: default
-pagination:
- data: music.month.albums
- size: 24
-permalink: "/music/albums/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.month.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | mediaLinks: "genre", 5 }}.
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/albums/this-week.html b/src/pages/dynamic/music/albums/this-week.html
deleted file mode 100644
index 182b34c4..00000000
--- a/src/pages/dynamic/music/albums/this-week.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Albums / This week
-description: All of the albums I've listened to this week.
-layout: default
-pagination:
- data: music.week.albums
- size: 24
-permalink: "/music/albums/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.week.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ 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 }}.
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/artists/3-months.html b/src/pages/dynamic/music/artists/3-months.html
deleted file mode 100644
index 8e1eb85e..00000000
--- a/src/pages/dynamic/music/artists/3-months.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Artists / 3 months
-description: All of the artists I've listened to over the last 3 months.
-layout: default
-pagination:
- data: music.threeMonth.artists
- size: 24
-permalink: "/music/artists/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.threeMonth.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | mediaLinks: "genre", 5 }}.
-
See thealbums or tracks I've listened to over the last 3 months. Or take a look at what I've listened tothis week or this month.
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/artists/this-month.html b/src/pages/dynamic/music/artists/this-month.html
deleted file mode 100644
index 4d5a0335..00000000
--- a/src/pages/dynamic/music/artists/this-month.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Artists / This month
-description: All of the artists I've listened to over the past month.
-layout: default
-pagination:
- data: music.month.artists
- size: 24
-permalink: "/music/artists/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.month.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | mediaLinks: "genre", 5 }}.
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/artists/this-week.html b/src/pages/dynamic/music/artists/this-week.html
deleted file mode 100644
index 584a9cba..00000000
--- a/src/pages/dynamic/music/artists/this-week.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Artists / This week
-description: All of the artists I've listened to this week.
-layout: default
-pagination:
- data: music.week.artists
- size: 24
-permalink: "/music/artists/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.week.artists[0].grid.image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ 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 }}.
-
- {%- endif -%}
-
\ No newline at end of file
diff --git a/src/pages/dynamic/music/index.html b/src/pages/dynamic/music/index.html
index e9bc0e67..4bb709fc 100644
--- a/src/pages/dynamic/music/index.html
+++ b/src/pages/dynamic/music/index.html
@@ -8,29 +8,22 @@ 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 }}.
diff --git a/src/pages/dynamic/music/periods/3-months.html b/src/pages/dynamic/music/periods/3-months.html
deleted file mode 100644
index 1b8c5595..00000000
--- a/src/pages/dynamic/music/periods/3-months.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: 3 months
-description: This is everything I've been listening to over the last 3 months — it's collected in a database as I listen to it and displayed here.
-layout: default
-permalink: "/music/three-months/index.html"
-updated: "now"
-image: music.threeMonth.artists[0].image
-schema: music-period
----
-
{{ title }}
-
I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | mediaLinks: "genre", 5 }}.
-{% render "partials/media/music/chart.liquid", data:music.threeMonth.tracks, count: 10 %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/periods/this-month.html b/src/pages/dynamic/music/this-month.html
similarity index 56%
rename from src/pages/dynamic/music/periods/this-month.html
rename to src/pages/dynamic/music/this-month.html
index 5485dc8f..b5285aa8 100644
--- a/src/pages/dynamic/music/periods/this-month.html
+++ b/src/pages/dynamic/music/this-month.html
@@ -9,27 +9,20 @@ schema: music-period
---
{{ title }}
I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | mediaLinks: "genre", 5 }}.
{% render "partials/media/music/chart.liquid", data:music.month.tracks, count: 10 %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/tracks/3-months.html b/src/pages/dynamic/music/tracks/3-months.html
deleted file mode 100644
index 30666332..00000000
--- a/src/pages/dynamic/music/tracks/3-months.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Tracks / 3 months
-description: All of the tracks I've listened to over the last 3 months.
-layout: default
-pagination:
- data: music.threeMonth.tracks
- size: 50
-permalink: "/music/tracks/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.threeMonth.artists[0].image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | mediaLinks: "genre", 5 }}.
-
See theartists or albums I've listened to over the last 3 months. Or take a look at what I've listened tothis week or this month.
-
-{% endif %}
-{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/tracks/this-month.html b/src/pages/dynamic/music/tracks/this-month.html
deleted file mode 100644
index 76bde75c..00000000
--- a/src/pages/dynamic/music/tracks/this-month.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Tracks / This month
-description: All of the tracks I've listened to over the past month.
-layout: default
-pagination:
- data: music.month.tracks
- size: 50
-permalink: "/music/tracks/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.month.artists[0].image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | mediaLinks: "genre", 5 }}.
-
-{% endif %}
-{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}
\ No newline at end of file
diff --git a/src/pages/dynamic/music/tracks/this-week.html b/src/pages/dynamic/music/tracks/this-week.html
deleted file mode 100644
index 6532ba96..00000000
--- a/src/pages/dynamic/music/tracks/this-week.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Tracks / This week
-description: All of the tracks I've listened to this week.
-layout: default
-pagination:
- data: music.week.tracks
- size: 50
-permalink: "/music/tracks/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-image: music.week.artists[0].image
-schema: music
----
-{% tablericon "arrow-left" %} Back to music
-{% if pagination.pageNumber == 0 %}
-
{{ 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 }}.
-
-{% endif %}
-{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}
\ No newline at end of file
diff --git a/src/pages/dynamic/watching/index.html b/src/pages/dynamic/watching/index.html
index 2b6c309d..597160a1 100644
--- a/src/pages/dynamic/watching/index.html
+++ b/src/pages/dynamic/watching/index.html
@@ -13,17 +13,13 @@ schema: watching
{% render "partials/blocks/banners/rss.liquid", url: "/feeds/movies", text: "Subscribe to my movies feed or follow along on this page" %}
diff --git a/src/pages/dynamic/watching/recent/movies.html b/src/pages/dynamic/watching/recent/movies.html
deleted file mode 100644
index c27eeeae..00000000
--- a/src/pages/dynamic/watching/recent/movies.html
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: Recent movies
-description: These are the movies I've watched recently. There are many like them, but these are mine.
-layout: default
-pagination:
- data: movies.recentlyWatched
- size: 24
-permalink: "/watching/recent/movies/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-schema: watching
----
-{% tablericon "arrow-left" %} Back to watching
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
These are the movies I've watched recently. There are many like them, but these are mine. (Or well, all the movies I've watched — they're ordered latest watched, descending, hence the recent part).
-
-{% endif %}
-{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination, shape:"poster" %}
\ No newline at end of file
diff --git a/src/pages/dynamic/watching/recent/shows.html b/src/pages/dynamic/watching/recent/shows.html
deleted file mode 100644
index 7563b266..00000000
--- a/src/pages/dynamic/watching/recent/shows.html
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: Recent shows
-description: These are the shows I've watched recently. There are many like them, but these are mine.
-layout: default
-pagination:
- data: tv.recentlyWatched
- size: 24
-permalink: "/watching/recent/shows/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
-schema: watching-shows
----
-{% tablericon "arrow-left" %} Back to watching
-{% if pagination.pageNumber == 0 %}
-
{{ title }}
-
These are the shows I've watched recently. There are many like them, but these are mine. (Or well, all the movies I've watched — they're ordered latest watched, descending, hence the recent part).