chore: aliasing and layout fixes
This commit is contained in:
parent
2dbf19dabb
commit
f6e2b45230
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,10 @@ const artistAliases = [
|
|||
artist: 'Osees',
|
||||
aliases: ['OCS', 'The Ohsees', 'Thee Oh Sees', "Thee Oh See's"],
|
||||
},
|
||||
{
|
||||
artist: 'Tom Waits',
|
||||
aliases: ['Tom Waits & Crystal Gayle'],
|
||||
},
|
||||
]
|
||||
|
||||
const aliasArtists = (array) => {
|
||||
|
|
|
@ -81,7 +81,7 @@ layout: main
|
|||
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
||||
{% for album in music.albums %}
|
||||
<a href="https://rateyourmusic.com/search?searchtype=l&searchterm={{album.name | escape}}%20{{ album.artist | escape }}" title="{{album.name | escape}} by {{ album.artist | escape }}">
|
||||
<div class="relative block">
|
||||
<div class="relative block h-full">
|
||||
<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">
|
||||
<div class="px-1 text-xs font-bold text-white line-clamp-2">{{ album.name }}</div>
|
||||
|
|
Reference in a new issue