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
{%- endif -%} 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 ---