fix: search for artists because rym urls are inconsistent
This commit is contained in:
parent
8d33b78889
commit
38d686a31c
2 changed files with 6 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
</h2>
|
||||
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
||||
{% for artist in music.artists %}
|
||||
<a href="https://rateyourmusic.com/artist/{{ artist.artist | dashLower }}" title="{{artist.artist | escape}}">
|
||||
<a href="{{ artist.url }}" title="{{artist.artist | escape}}">
|
||||
<div class="relative block">
|
||||
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 bg-cover-gradient dark:border-purple-400 dark:hover:border-purple-500"></div>
|
||||
<div class="absolute left-1 bottom-2 drop-shadow-md">
|
||||
|
|
Reference in a new issue