fix: albums that don't have a valid link
This commit is contained in:
parent
b7a70c1589
commit
cb3e867300
13 changed files with 19 additions and 13 deletions
|
@ -11,7 +11,7 @@ permalink: 404.html
|
|||
</h3>
|
||||
<div class="flex justify-center">
|
||||
<a href="/" class="flex flex-row items-start md:items-center font-semibold py-2 px-4 rounded-full !no-underline !text-white dark:text-gray-900 bg-purple-600 dark:bg-purple-400 hover:bg-purple-500">
|
||||
<span class="pt-1 md:pt-0 mr-1">
|
||||
<span class="icon--bold pt-1 md:pt-0 mr-1">
|
||||
{% tablericon "receipt-2" "Receipt" "width=20 height=20" %}
|
||||
</span>
|
||||
<span>Skip out on the room service bill</span>
|
||||
|
|
|
@ -80,7 +80,9 @@ module.exports = async function () {
|
|||
name: track.attributes['albumName'],
|
||||
artist: track.attributes['artistName'],
|
||||
art: track.attributes.artwork.url.replace('{w}', '300').replace('{h}', '300'),
|
||||
url: `https://song.link/${track['relationships'].albums.data.pop().attributes.url}`,
|
||||
url: track['relationships']
|
||||
? `https://song.link/${track['relationships'].albums.data.pop().attributes.url}`
|
||||
: `https://rateyourmusic.com/search?searchtype=l&searchterm=${track.attributes['albumName']}%20${track.attributes['artistName']}`,
|
||||
plays: 1,
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if albumReleases.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "calendar-time" "Anticipated albums" "height=28" %}
|
||||
<div class="ml-1">Anticipated albums</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if music.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "vinyl" "Albums" "height=28" %}
|
||||
<div class="ml-1">Albums</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if music.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "microphone-2" "Artists" "height=28" %}
|
||||
<div class="ml-1">Artists</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if books.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "books" "Books" "height=28" %}
|
||||
<div class="ml-1">Books</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if links.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "link" "Links" "height=28" %}
|
||||
<div class="ml-1">Links</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if movies.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "movie" "Movies" "height=28" %}
|
||||
<div class="ml-1">Movies</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if tv.size > 0 %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "device-tv" "TV" "height=28" %}
|
||||
<div class="ml-1">TV</div>
|
||||
</h2>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% assign posts = posts | getPopularPosts: analytics %}
|
||||
<div class="not-prose">
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "flame" "Popular" "height=28" %}
|
||||
<div class="ml-1">Popular posts</div>
|
||||
</h2>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
</h3>
|
||||
<div class="flex justify-center">
|
||||
<a href="https://github.com/whitep4nth3r/the-claw-webring" class="flex flex-row items-start md:items-center font-semibold py-2 px-4 rounded-full !no-underline !text-white dark:text-gray-900 bg-purple-600 dark:bg-purple-400 hover:bg-purple-500">
|
||||
<span class="pt-1 md:pt-0 mr-1">
|
||||
<span class="icon--bold pt-1 md:pt-0 mr-1">
|
||||
{% tablericon "user-plus" "Join!" "width=20 height=20" %}
|
||||
</span>
|
||||
<span>Join!</span>
|
||||
|
|
|
@ -17,7 +17,7 @@ meta:
|
|||
image:
|
||||
src: https://coryd.dev/assets/img/avatar.webp
|
||||
---
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "clock-heart" "Currently" "height=28" %}
|
||||
<div class="ml-1">Currently</div>
|
||||
</h2>
|
||||
|
@ -36,7 +36,7 @@ meta:
|
|||
</span>
|
||||
</p>
|
||||
</div>
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% tablericon "terminal-2" "Making" "height=28" %}
|
||||
<div class="ml-1">Making</div>
|
||||
</h2>
|
||||
|
|
|
@ -103,6 +103,10 @@ pre {
|
|||
stroke-width: 1.4;
|
||||
}
|
||||
|
||||
.icon--bold [data-tablericon-name] {
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
||||
.link--icon svg {
|
||||
color: theme(colors.gray.700)
|
||||
}
|
||||
|
|
Reference in a new issue