fix: genre slugs
This commit is contained in:
parent
0754a715ed
commit
b03a014258
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ const fetchGenresWithArtists = async () => {
|
||||||
...artist,
|
...artist,
|
||||||
country: parseCountryField(artist['country'])
|
country: parseCountryField(artist['country'])
|
||||||
}))
|
}))
|
||||||
genre['url'] = `/music/genres/${slugify(genre['name'].toLowerCase())}`
|
genre['url'] = `/music/genres/${slugify(genre['name'].replace('/', '-').toLowerCase())}`
|
||||||
})
|
})
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
|
@ -49,7 +49,7 @@ schema: artist
|
||||||
<p class="sub-meta"><strong class="highlight-text">{{ artist.total_plays }} plays</strong></p>
|
<p class="sub-meta"><strong class="highlight-text">{{ artist.total_plays }} plays</strong></p>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
<p class="sub-meta">
|
<p class="sub-meta">
|
||||||
<a href="/music/genres/{{ artist.genres | slugify | downcase }}" title="Learn more about {{ artist.genres | escape }}">
|
<a href="/music/genres/{{ artist.genres | replace: '/', '-' | slugify | downcase }}" title="Learn more about {{ artist.genres | escape }}">
|
||||||
{{ artist.genres }}
|
{{ artist.genres }}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
Reference in a new issue