From d4fd175ab92b29add8476e583b2c56b7f0c15eb6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 26 May 2024 16:14:10 -0700 Subject: [PATCH] fix: url consistency --- _redirects | 1 + config/filters/index.js | 4 ++-- src/pages/main/music/artists/artist.html | 2 +- src/pages/main/music/genre.html | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/_redirects b/_redirects index a809386c..f3e4112d 100644 --- a/_redirects +++ b/_redirects @@ -75,6 +75,7 @@ /articles/ / 301! /tags /search 301! /referrals /save 301! +/genre/* /genres/:splat 301! /recent/movies /watching/recent/movies 301! /recent/shows /watching/recent/shows 301! /mastodon https://social.lol/@cory 301! diff --git a/config/filters/index.js b/config/filters/index.js index e41ae127..71e4cad4 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -259,14 +259,14 @@ export default { const allButLast = dataSlice.slice(0, -1).map(item => { if (type === 'genre') { - return `${item}` + return `${item}` } else if (type === 'artist') { return `${item['name_string']}` } }).join(', ') const last = type === 'genre' - ? `${dataSlice[dataSlice.length - 1]}` + ? `${dataSlice[dataSlice.length - 1]}` : `${dataSlice[dataSlice.length - 1]['name_string']}` return `${allButLast} and ${last}` diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index ba14f740..f95e0807 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -29,7 +29,7 @@ schema: artist

{{ artist.total_plays }} plays

{%- endif -%}

- + {{ artist.genre }}

diff --git a/src/pages/main/music/genre.html b/src/pages/main/music/genre.html index 0e2456a9..85f5d011 100644 --- a/src/pages/main/music/genre.html +++ b/src/pages/main/music/genre.html @@ -4,7 +4,7 @@ pagination: data: genres size: 1 alias: genre -permalink: /music/genre/{{ genre.name | slugify | downcase }}/index.html +permalink: /music/genres/{{ genre.name | slugify | downcase }}/index.html updated: "now" schema: genre ---