diff --git a/package-lock.json b/package-lock.json index 3739b017..96f91ecd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "16.0.3", + "version": "16.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "16.0.3", + "version": "16.1.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.2.2", diff --git a/package.json b/package.json index 881d6df5..e04f0603 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "16.0.3", + "version": "16.1.0", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/books.js b/src/_data/books.js index 6b00263c..12a71918 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -16,7 +16,7 @@ export default async function () { title: book['title'], authors, description: book['description'], - image: encodeURIComponent(book['thumbnail'].replace('&edge=curl', '')), + image: book['thumbnail'], url: `https://openlibrary.org/isbn/${book['isbn']}`, date, status: book['status'], diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 2f9b60a9..2c0a93b9 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -8,6 +8,21 @@ {{ meta.siteName }} {% endif %} {%- endcapture -%} +{%- capture ogImage -%} + {% if schema == 'blog' %} + {{ meta.url }}/assets/img/ogi/{{ title | slugifyString }}-preview.png + {% elsif schema == 'music' %} + {{ music.recent.artists[0].image }} + {% elsif schema == 'watching' %} + {%- assign featuredMovie = movies.recentlyWatched | first -%} + {{ featuredMovie.backdrop }} + {% elsif schema == 'books' %} + {%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%} + {{ featuredBook.image }} + {% else %} + {{ meta.meta_data.opengraph_default }} +{% endif %} +{%- endcapture -%} @@ -23,10 +38,7 @@ - + @@ -111,4 +123,4 @@ {{ content }} - + \ No newline at end of file diff --git a/src/pages/main/books/index.html b/src/pages/main/books/index.html index 086db05c..a6b23c99 100644 --- a/src/pages/main/books/index.html +++ b/src/pages/main/books/index.html @@ -2,6 +2,7 @@ title: Currently reading • Books layout: default permalink: "/books/index.html" +schema: books --- {%- assign bookData = books | bookStatus: 'started' | reverse -%} {%- assign currentBookCount = books | currentBookCount -%} diff --git a/src/pages/main/books/want-to-read.html b/src/pages/main/books/want-to-read.html index f1fc2f37..29eff6c6 100644 --- a/src/pages/main/books/want-to-read.html +++ b/src/pages/main/books/want-to-read.html @@ -6,6 +6,7 @@ pagination: alias: books size: 30 permalink: "/books/want-to-read/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: books --- {% if pagination.pageNumber == 0 %} diff --git a/src/pages/main/books/years/2020.html b/src/pages/main/books/years/2020.html index 934b09b3..94676221 100644 --- a/src/pages/main/books/years/2020.html +++ b/src/pages/main/books/years/2020.html @@ -3,5 +3,6 @@ title: 2020 • Books year: 2020 layout: book-year permalink: "/books/years/2020.html" +schema: books ---

This is everything I read in 2020. My favorites were: every book in The Expanse series and I'll Be Gone in the Dark.

\ No newline at end of file diff --git a/src/pages/main/books/years/2021.html b/src/pages/main/books/years/2021.html index 5b536d14..f4c8fd4f 100644 --- a/src/pages/main/books/years/2021.html +++ b/src/pages/main/books/years/2021.html @@ -3,5 +3,6 @@ title: 2021 • Books year: 2021 layout: book-year permalink: "/books/years/2021.html" +schema: books ---

This is everything I read in 2021. My favorites were: This Is How They Tell Me The World Ends, Sandworm, Empire of Pain, Say Nothing, Sigh, Gone and Leviathan Falls.

\ No newline at end of file diff --git a/src/pages/main/books/years/2022.html b/src/pages/main/books/years/2022.html index f79bdecf..f6ab2b5f 100644 --- a/src/pages/main/books/years/2022.html +++ b/src/pages/main/books/years/2022.html @@ -3,5 +3,6 @@ title: 2022 • Books year: 2022 layout: book-year permalink: "/books/years/2022.html" +schema: books ---

This is everything I read in 2022. My favorites were: Sellout, The Sins of Our Fathers, Drive, Adnan's Story and The Lazarus Heist.

\ No newline at end of file diff --git a/src/pages/main/books/years/2023.html b/src/pages/main/books/years/2023.html index 6bf3a91f..33772811 100644 --- a/src/pages/main/books/years/2023.html +++ b/src/pages/main/books/years/2023.html @@ -3,5 +3,6 @@ title: 2023 • Books year: 2023 layout: book-year permalink: "/books/years/2023.html" +schema: books ---

This is everything I read in 2023. My favorites were: Stay True, Where Are Your Boys Tonight?, Trouble Boys, Tracers in the Dark and Girl in a Band.

\ No newline at end of file diff --git a/src/pages/main/books/years/2024.html b/src/pages/main/books/years/2024.html index d0d029d8..ad28d715 100644 --- a/src/pages/main/books/years/2024.html +++ b/src/pages/main/books/years/2024.html @@ -3,5 +3,6 @@ title: 2024 • Books year: 2024 layout: book-year permalink: "/books/years/2024.html" +schema: books ---

This is everything I've read in 2024 — continuing my trend of concentrating on science fiction, tech coverage, pop sci, autobiographies and coverage of musicians I appreciate.

\ No newline at end of file diff --git a/src/pages/main/music/albums/3-months.html b/src/pages/main/music/albums/3-months.html index 0e34f58e..5bc68f70 100644 --- a/src/pages/main/music/albums/3-months.html +++ b/src/pages/main/music/albums/3-months.html @@ -5,6 +5,7 @@ pagination: data: music.threeMonth.albums size: 24 permalink: "/music/albums/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/albums/all-time.html b/src/pages/main/music/albums/all-time.html index cb7ae293..95c08995 100644 --- a/src/pages/main/music/albums/all-time.html +++ b/src/pages/main/music/albums/all-time.html @@ -5,6 +5,7 @@ pagination: data: music.allTime.albums size: 24 permalink: "/music/albums/all-time/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/albums/this-month.html b/src/pages/main/music/albums/this-month.html index c86da0e0..593ecf03 100644 --- a/src/pages/main/music/albums/this-month.html +++ b/src/pages/main/music/albums/this-month.html @@ -5,6 +5,7 @@ pagination: data: music.month.albums size: 24 permalink: "/music/albums/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/albums/this-week.html b/src/pages/main/music/albums/this-week.html index 5f3bab77..4b2ef9ec 100644 --- a/src/pages/main/music/albums/this-week.html +++ b/src/pages/main/music/albums/this-week.html @@ -5,6 +5,7 @@ pagination: data: music.week.albums size: 24 permalink: "/music/albums/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/artists/3-months.html b/src/pages/main/music/artists/3-months.html index cf326b57..3028ef6e 100644 --- a/src/pages/main/music/artists/3-months.html +++ b/src/pages/main/music/artists/3-months.html @@ -5,6 +5,7 @@ pagination: data: music.threeMonth.artists size: 24 permalink: "/music/artists/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/artists/all-time.html b/src/pages/main/music/artists/all-time.html index 0dea0668..a724d3c8 100644 --- a/src/pages/main/music/artists/all-time.html +++ b/src/pages/main/music/artists/all-time.html @@ -5,6 +5,7 @@ pagination: data: music.allTime.artists size: 24 permalink: "/music/artists/all-time/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/artists/this-month.html b/src/pages/main/music/artists/this-month.html index 4e20c036..bf4b9aa0 100644 --- a/src/pages/main/music/artists/this-month.html +++ b/src/pages/main/music/artists/this-month.html @@ -5,6 +5,7 @@ pagination: data: music.month.artists size: 24 permalink: "/music/artists/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/artists/this-week.html b/src/pages/main/music/artists/this-week.html index bb23c1a4..2a803eea 100644 --- a/src/pages/main/music/artists/this-week.html +++ b/src/pages/main/music/artists/this-week.html @@ -5,6 +5,7 @@ pagination: data: music.week.artists size: 24 permalink: "/music/artists/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/index.html b/src/pages/main/music/index.html index 97d92b5c..f4a542e6 100644 --- a/src/pages/main/music/index.html +++ b/src/pages/main/music/index.html @@ -2,6 +2,7 @@ title: Music layout: default permalink: "/music/index.html" +schema: music --- {% capture js %} {% render "../../../assets/scripts/media-toggles.js" %} diff --git a/src/pages/main/music/tracks/3-months.html b/src/pages/main/music/tracks/3-months.html index af26eccb..798f0dfc 100644 --- a/src/pages/main/music/tracks/3-months.html +++ b/src/pages/main/music/tracks/3-months.html @@ -5,6 +5,7 @@ pagination: data: music.threeMonth.tracks size: 50 permalink: "/music/tracks/three-months/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/tracks/all-time.html b/src/pages/main/music/tracks/all-time.html index 1bf793be..0dc4c163 100644 --- a/src/pages/main/music/tracks/all-time.html +++ b/src/pages/main/music/tracks/all-time.html @@ -5,6 +5,7 @@ pagination: data: music.allTime.tracks size: 50 permalink: "/music/tracks/all-time/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/tracks/this-month.html b/src/pages/main/music/tracks/this-month.html index b38b9286..1d15776b 100644 --- a/src/pages/main/music/tracks/this-month.html +++ b/src/pages/main/music/tracks/this-month.html @@ -5,6 +5,7 @@ pagination: data: music.month.tracks size: 50 permalink: "/music/tracks/this-month/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/music/tracks/this-week.html b/src/pages/main/music/tracks/this-week.html index 42871fac..55d8c1f0 100644 --- a/src/pages/main/music/tracks/this-week.html +++ b/src/pages/main/music/tracks/this-week.html @@ -5,6 +5,7 @@ pagination: data: music.week.tracks size: 50 permalink: "/music/tracks/this-week/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: music ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/watching/favorites/movies.html b/src/pages/main/watching/favorites/movies.html index 7d0f83b8..581f03f5 100644 --- a/src/pages/main/watching/favorites/movies.html +++ b/src/pages/main/watching/favorites/movies.html @@ -2,6 +2,7 @@ title: Favorite movies layout: default permalink: "/watching/favorite-movies/index.html" +schema: watching ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/watching/favorites/shows.html b/src/pages/main/watching/favorites/shows.html index 213ff31b..0b508708 100644 --- a/src/pages/main/watching/favorites/shows.html +++ b/src/pages/main/watching/favorites/shows.html @@ -2,6 +2,7 @@ title: Favorite shows layout: default permalink: "/watching/favorite-shows/index.html" +schema: watching ---

{% tablericon "arrow-left" "Go back" %} Go back

diff --git a/src/pages/main/watching/index.html b/src/pages/main/watching/index.html index c2eea2fa..3c923f4a 100644 --- a/src/pages/main/watching/index.html +++ b/src/pages/main/watching/index.html @@ -2,6 +2,7 @@ title: Watching layout: default permalink: "/watching/index.html" +schema: watching --- {% assign featuredMovie = movies.favorites | featuredWatching: 1 | first %} diff --git a/src/pages/main/watching/to-watch/movies.html b/src/pages/main/watching/to-watch/movies.html index 492d0a95..0fb159de 100644 --- a/src/pages/main/watching/to-watch/movies.html +++ b/src/pages/main/watching/to-watch/movies.html @@ -6,6 +6,7 @@ pagination: alias: movies size: 30 permalink: "/watching/movies-to-watch/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: watching ---

{% tablericon "arrow-left" "Go back" %} Go back

{% if pagination.pageNumber == 0 %} diff --git a/src/pages/main/watching/to-watch/shows.html b/src/pages/main/watching/to-watch/shows.html index a7f647cc..9a6f81cc 100644 --- a/src/pages/main/watching/to-watch/shows.html +++ b/src/pages/main/watching/to-watch/shows.html @@ -6,6 +6,7 @@ pagination: alias: shows size: 30 permalink: "/watching/shows-to-watch/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber | plus: 1 }}/{% endif %}index.html" +schema: watching ---

{% tablericon "arrow-left" "Go back" %} Go back

{% if pagination.pageNumber == 0 %}