fix: genre slugs

This commit is contained in:
Cory Dransfeldt 2024-07-26 21:01:54 -07:00
parent 0754a715ed
commit b03a014258
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ schema: artist
<p class="sub-meta"><strong class="highlight-text">{{ artist.total_plays }} plays</strong></p>
{%- endif -%}
<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 }}
</a>
</p>