fix: og tags

This commit is contained in:
Cory Dransfeldt 2024-06-12 15:37:41 -07:00
parent 2c015c8538
commit a87bd0ee80
No known key found for this signature in database
4 changed files with 20 additions and 20 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.0", "version": "19.2.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.0", "version": "19.2.2",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -1146,9 +1146,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.4.799", "version": "1.4.800",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.799.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.800.tgz",
"integrity": "sha512-3D3DwWkRTzrdEpntY0hMLYwj7SeBk1138CkPE8sBDSj3WzrzOiG2rHm3luw8jucpf+WiyLBCZyU9lMHyQI9M9Q==", "integrity": "sha512-G8yyAReBP8m0XaW9BBH5NOJe4ZGYDDsPYkgLCG8xU6HwGKzrT0Jj51uAHkt1D+9ZxHPoGFSSZqqSN7HxAiP+0g==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.1", "version": "19.2.2",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -29,11 +29,11 @@
{%- elsif artist.description -%} {%- elsif artist.description -%}
{%- assign pageDescription = artist.description | truncate: 300 -%} {%- assign pageDescription = artist.description | truncate: 300 -%}
{%- elsif book.description -%} {%- elsif book.description -%}
{%- assign pageDescription = book.description -%} {%- assign pageDescription = book.review | markdown | strip_html | default: book.description | truncate: 300 -%}
{%- elsif movie.description -%} {%- 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 -%} {%- 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 -%} {%- elsif genre.description -%}
{%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%} {%- assign pageDescription = genre.description | markdown | strip_html | truncate: 300 -%}
{%- elsif description -%} {%- elsif description -%}
@ -43,29 +43,29 @@
{%- assign ogImage = meta.meta_data.opengraph_default -%} {%- assign ogImage = meta.meta_data.opengraph_default -%}
{%- case schema -%} {%- case schema -%}
{%- when 'music' -%} {%- when 'music' -%}
{%- assign ogImage = music.recent.artists[0].image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: music.recent.artists[0].image -%}
{%- when 'music-index' -%} {%- when 'music-index' -%}
{%- assign ogImage = music.recent.artists[0].image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: music.recent.artists[0].image -%}
{%- when 'artist' -%} {%- when 'artist' -%}
{%- assign ogImage = artist.image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: artist.image -%}
{%- when 'genre' -%} {%- when 'genre' -%}
{%- assign sortedGenreArtists = genre.artists | sortByPlaysDescending: "total_plays" -%} {%- assign sortedGenreArtists = genre.artists | sortByPlaysDescending: "total_plays" -%}
{%- assign ogImage = sortedGenreArtists[0].image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: sortedGenreArtists[0].image -%}
{%- when 'watching' -%} {%- when 'watching' -%}
{%- assign featuredMovie = movies.recentlyWatched | first -%} {%- assign featuredMovie = movies.recentlyWatched | first -%}
{%- assign ogImage = featuredMovie.backdrop -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredMovie.backdrop -%}
{%- when 'books' -%} {%- when 'books' -%}
{%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%} {%- assign featuredBook = books | bookStatus: 'started' | reverse | first -%}
{%- assign ogImage = featuredBook.image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%}
{%- when 'book' -%} {%- when 'book' -%}
{%- assign ogImage = book.image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: book.image -%}
{%- when 'movie' -%} {%- when 'movie' -%}
{%- assign ogImage = movie.backdrop -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: movie.backdrop -%}
{%- when 'show' -%} {%- when 'show' -%}
{%- assign ogImage = 'https://cdn.coryd.dev/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%} {%- assign ogImage = 'https://cdn.coryd.dev/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%}
{%- when 'genre' -%} {%- when 'genre' -%}
{%- assign genreArtist = genre.artists | shuffleArray | first -%} {%- assign genreArtist = genre.artists | shuffleArray | first -%}
{%- assign ogImage = genreArtist.image -%} {%- assign ogImage = 'https://cdn.coryd.dev' | append: genreArtist.image -%}
{%- endcase -%} {%- endcase -%}
<!doctype html> <!doctype html>

View file

@ -46,7 +46,7 @@ schema: artist
<p class="sub-meta"><strong class="highlight-text">{{ artist.total_plays }} plays</strong></p> <p class="sub-meta"><strong class="highlight-text">{{ artist.total_plays }} plays</strong></p>
{%- endif -%} {%- endif -%}
<p class="sub-meta"> <p class="sub-meta">
<a href="https://coryd.dev/music/genres/{{ artist.genres | slugify | downcase }}" title="Learn more about {{ artist.genres | escape }}"> <a href="/music/genres/{{ artist.genres | slugify | downcase }}" title="Learn more about {{ artist.genres | escape }}">
{{ artist.genres }} {{ artist.genres }}
</a> </a>
</p> </p>
@ -73,5 +73,5 @@ schema: artist
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
<p class="text-small text-centered"><em>These are the album by this artist that are in my collection, not necessarily a comprehensive discography.</em></p> <p class="text-small"><em>These are the album by this artist that are in my collection, not necessarily a comprehensive discography.</em></p>
</article> </article>