diff --git a/package-lock.json b/package-lock.json index f887b767..6e632354 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "@11ty/eleventy-fetch": "^4.0.1", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", - "@cdransf/eleventy-plugin-tabler-icons": "^1.7.0", + "@cdransf/eleventy-plugin-tabler-icons": "^1.8.0", "@supabase/supabase-js": "^2.44.2", "dotenv-flow": "^4.1.0", "html-minifier-terser": "^7.2.0", @@ -270,9 +270,9 @@ "license": "MIT" }, "node_modules/@cdransf/eleventy-plugin-tabler-icons": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@cdransf/eleventy-plugin-tabler-icons/-/eleventy-plugin-tabler-icons-1.7.0.tgz", - "integrity": "sha512-rC0exJmeoiM6C27i7/zIC7A76tUPPeZqOcGe4/Pf/rbywdKQL7eeHMQjkC5I+y5Bn94JJ04PDc4BaHcNfZlpMA==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@cdransf/eleventy-plugin-tabler-icons/-/eleventy-plugin-tabler-icons-1.8.0.tgz", + "integrity": "sha512-s3cYbldRrdMRSnWbf/F/Y8mViV8CCcH4e3vBbYDrM/frrvAC3SwHGtl6amMeKtlZTZ+brbGcZxiKrm84v7QiAQ==", "dev": true, "license": "MIT" }, diff --git a/package.json b/package.json index bbfda220..bef37d26 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "@11ty/eleventy-fetch": "^4.0.1", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", - "@cdransf/eleventy-plugin-tabler-icons": "^1.7.0", + "@cdransf/eleventy-plugin-tabler-icons": "^1.8.0", "@supabase/supabase-js": "^2.44.2", "dotenv-flow": "^4.1.0", "html-minifier-terser": "^7.2.0", diff --git a/src/_data/artists.js b/src/_data/artists.js index 164aed1e..f68d5aa2 100644 --- a/src/_data/artists.js +++ b/src/_data/artists.js @@ -54,7 +54,7 @@ const fetchGenreMapping = async () => { export default async function () { const genreMapping = await fetchGenreMapping() - const artists = await fetchPaginatedData('artists', 'id, mbid, name_string, image, total_plays, country, description, favorite, genres') + const artists = await fetchPaginatedData('artists', 'id, mbid, name_string, image, total_plays, country, description, favorite, tattoo, genres') const albums = await fetchPaginatedData('albums', 'mbid, name, release_year, total_plays, artist') const albumsByArtist = albums.reduce((acc, album) => { if (!acc[album.artist]) acc[album.artist] = [] diff --git a/src/assets/styles/defaults/vars.css b/src/assets/styles/defaults/vars.css index f9708673..3c5afbaf 100644 --- a/src/assets/styles/defaults/vars.css +++ b/src/assets/styles/defaults/vars.css @@ -61,6 +61,7 @@ --posts: #008080; --search: #4682b4; --sun: #ffa500; + --tattoo: #b22222; --tv: #ff4500; --warning: #ff8c00; --webrings: #da70d6; diff --git a/src/assets/styles/pages/music.css b/src/assets/styles/pages/music.css index 0139c0f2..20202561 100644 --- a/src/assets/styles/pages/music.css +++ b/src/assets/styles/pages/music.css @@ -52,6 +52,14 @@ } } + &.tattoo { + color: var(--tattoo); + + & svg { + stroke: var(--tattoo); + } + } + &.brain:focus, &.brain:focus-within { outline: 0; diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index 6f6fc1a0..c41d1fbb 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -42,6 +42,9 @@ schema: artist {%- if artist.favorite -%}
{%- endif -%} + {%- if artist.tattoo -%} + + {%- endif -%} {%- if artist.total_plays > 0 -%} {%- endif -%}