From a87bd0ee80f28c8502396c920bd026010937037f Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 12 Jun 2024 15:37:41 -0700 Subject: [PATCH] fix: og tags --- package-lock.json | 10 +++++----- package.json | 2 +- src/_includes/base.liquid | 24 ++++++++++++------------ src/pages/main/music/artists/artist.html | 4 ++-- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 47855d37..a626ad72 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.2.0", + "version": "19.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.2.0", + "version": "19.2.2", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", @@ -1146,9 +1146,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.4.799", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.799.tgz", - "integrity": "sha512-3D3DwWkRTzrdEpntY0hMLYwj7SeBk1138CkPE8sBDSj3WzrzOiG2rHm3luw8jucpf+WiyLBCZyU9lMHyQI9M9Q==", + "version": "1.4.800", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.800.tgz", + "integrity": "sha512-G8yyAReBP8m0XaW9BBH5NOJe4ZGYDDsPYkgLCG8xU6HwGKzrT0Jj51uAHkt1D+9ZxHPoGFSSZqqSN7HxAiP+0g==", "dev": true, "license": "ISC" }, diff --git a/package.json b/package.json index 98d7639e..434cf7e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.2.1", + "version": "19.2.2", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 2013c09e..3cc9182b 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -29,11 +29,11 @@ {%- elsif artist.description -%} {%- assign pageDescription = artist.description | truncate: 300 -%} {%- elsif book.description -%} - {%- assign pageDescription = book.description -%} + {%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncate: 300 -%} {%- elsif movie.description -%} - {%- assign pageDescription = movie.review | default: movie.description | truncate: 300 -%} + {%- assign pageDescription = movie.review | markdown | strip_html | default: movie.description | truncate: 300 -%} {%- elsif show.description -%} - {%- assign pageDescription = show.review | default: show.description | truncate: 300 -%} + {%- assign pageDescription = show.review | markdown | strip_html | default: show.description | truncate: 300 -%} {%- elsif genre.description -%} {%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%} {%- elsif description -%} @@ -43,29 +43,29 @@ {%- assign ogImage = meta.meta_data.opengraph_default -%} {%- case schema -%} {%- when 'music' -%} - {%- assign ogImage = music.recent.artists[0].image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: music.recent.artists[0].image -%} {%- when 'music-index' -%} - {%- assign ogImage = music.recent.artists[0].image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: music.recent.artists[0].image -%} {%- when 'artist' -%} - {%- assign ogImage = artist.image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: artist.image -%} {%- when 'genre' -%} {%- assign sortedGenreArtists = genre.artists | sortByPlaysDescending: "total_plays" -%} - {%- assign ogImage = sortedGenreArtists[0].image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: sortedGenreArtists[0].image -%} {%- when 'watching' -%} {%- assign featuredMovie = movies.recentlyWatched | first -%} - {%- assign ogImage = featuredMovie.backdrop -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredMovie.backdrop -%} {%- when 'books' -%} {%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%} - {%- assign ogImage = featuredBook.image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%} {%- when 'book' -%} - {%- assign ogImage = book.image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: book.image -%} {%- when 'movie' -%} - {%- assign ogImage = movie.backdrop -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: movie.backdrop -%} {%- when 'show' -%} {%- assign ogImage = 'https://cdn.coryd.dev/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%} {%- when 'genre' -%} {%- assign genreArtist = genre.artists | shuffleArray | first -%} - {%- assign ogImage = genreArtist.image -%} + {%- assign ogImage = 'https://cdn.coryd.dev' | append: genreArtist.image -%} {%- endcase -%} diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index b23e179b..34331392 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -46,7 +46,7 @@ schema: artist

{{ artist.total_plays }} plays

{%- endif -%}

- + {{ artist.genres }}

@@ -73,5 +73,5 @@ schema: artist {% endfor %} -

These are the album by this artist that are in my collection, not necessarily a comprehensive discography.

+

These are the album by this artist that are in my collection, not necessarily a comprehensive discography.

\ No newline at end of file