diff --git a/package-lock.json b/package-lock.json index 082ff2d3..2c703910 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "1.0.7", + "version": "1.0.8", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 95733673..115bf52f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "1.0.7", + "version": "1.0.8", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/data/globals.js b/src/data/globals.js index 000771c0..a1b6bd1b 100644 --- a/src/data/globals.js +++ b/src/data/globals.js @@ -1,7 +1,7 @@ import { createClient } from '@supabase/supabase-js' -const SUPABASE_URL = process.env['SUPABASE_URL'] -const SUPABASE_KEY = process.env['SUPABASE_KEY'] +const SUPABASE_URL = process.env.SUPABASE_URL +const SUPABASE_KEY = process.env.SUPABASE_KEY const supabase = createClient(SUPABASE_URL, SUPABASE_KEY) const fetchGlobals = async () => { diff --git a/src/includes/base.liquid b/src/includes/base.liquid index 3365b397..296b3d94 100644 --- a/src/includes/base.liquid +++ b/src/includes/base.liquid @@ -47,44 +47,44 @@ {%- assign pageDescription = description -%} {%- endif -%} -{%- assign ogImage = 'https://cdn.coryd.dev' | append: globals.avatar | append: "?class=w800" -%} +{%- assign ogImage = globals.cdn_url | append: globals.avatar -%} {%- case schema -%} {%- when 'music' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: page.image -%} + {%- assign ogImage = globals.cdn_url | append: page.image -%} {%- when 'music-index' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: music.week.artists[0].image -%} + {%- assign ogImage = globals.cdn_url | append: music.week.artists[0].grid.image -%} {%- when 'artist' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: artist.image -%} + {%- assign ogImage = globals.cdn_url | append: artist.grid.image -%} {%- when 'genre' -%} {%- assign sortedGenreArtists = genre.artists | sortByPlaysDescending: "total_plays" -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: sortedGenreArtists[0].image -%} + {%- assign ogImage = globals.cdn_url | append: sortedGenreArtists[0].grid.image -%} {%- when 'watching' -%} {%- assign featuredMovie = movies.recentlyWatched | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredMovie.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: featuredMovie.grid.backdrop -%} {%- when 'watching-shows' -%} {%- assign featuredShow = tv.recentlyWatched | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredShow.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%} {%- when 'favorite-movies' -%} {%- assign featuredMovie = movies.favorites| shuffleArray | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredMovie.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: featuredMovie.grid.backdrop -%} {%- when 'favorite-shows' -%} {%- assign featuredShow = tv.favorites | shuffleArray | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredShow.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%} {%- when 'books' -%} {%- assign featuredBook = books.all | bookStatus: 'started' | reverse | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%} + {%- assign ogImage = globals.cdn_url | append: featuredBook.grid.image -%} {%- when 'books-year' -%} {%- assign featuredBook = books.all | bookStatus: 'finished' | bookFinishedYear: year.value | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: featuredBook.image -%} + {%- assign ogImage = globals.cdn_url | append: featuredBook.grid.image -%} {%- when 'book' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: book.image -%} + {%- assign ogImage = globals.cdn_url | append: book.grid.image -%} {%- when 'movie' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: movie.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: movie.grid.backdrop -%} {%- when 'show' -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: show.backdrop -%} + {%- assign ogImage = globals.cdn_url | append: show.grid.backdrop -%} {%- when 'genre' -%} {%- assign genreArtist = genre.artists | shuffleArray | first -%} - {%- assign ogImage = 'https://cdn.coryd.dev' | append: genreArtist.image -%} + {%- assign ogImage = globals.cdn_url | append: genreArtist.grid.image -%} {%- endcase -%} @@ -107,9 +107,9 @@ - - - + + + diff --git a/src/includes/partials/blocks/hero.liquid b/src/includes/partials/blocks/hero.liquid index 86953d47..7627ac04 100644 --- a/src/includes/partials/blocks/hero.liquid +++ b/src/includes/partials/blocks/hero.liquid @@ -1,13 +1,13 @@ {{ alt }} <![CDATA[{{ title }}]]> {{ permalink | absoluteUrl }} - {{ "https://cdn.coryd.dev" | append: globals.avatar | append: "?class=w200" }} + {{ globals.cdn_url }}{{ globals.avatar }}?class=w200 144 144 @@ -34,7 +34,7 @@ {{ entryFeed.date | stringToRFC822Date }} {{ entryFeed.url | encodeAmp }} {%- if entryFeed.image -%} - + {%- endif -%} diff --git a/src/includes/partials/feeds/syndication.rss.liquid b/src/includes/partials/feeds/syndication.rss.liquid index 37386f49..3336eb71 100644 --- a/src/includes/partials/feeds/syndication.rss.liquid +++ b/src/includes/partials/feeds/syndication.rss.liquid @@ -11,7 +11,7 @@ <![CDATA[{{ title }}]]> {{ permalink | absoluteUrl }} - {{ "https://cdn.coryd.dev" | append: globals.avatar | append: "?class=w200" }} + {{ globals.cdn_url }}{{ globals.avatar }}?class=w200 144 144 diff --git a/src/includes/partials/media/grid.liquid b/src/includes/partials/media/grid.liquid index 4ce1e9c1..96318221 100644 --- a/src/includes/partials/media/grid.liquid +++ b/src/includes/partials/media/grid.liquid @@ -13,11 +13,11 @@ {%- if shape == 'poster' -%} {{ alt }} {{ item.chart.alt }} {{ alt }} {{ alt }}I finished {{ bookData.size }} books in {{ year.value }}.{%- if favoriteBooks %} Among my favorites were {{ favoriteBooks }}.{%- endif -%}

{% endif %}
-{% render "partials/media/grid.liquid", data:bookData, shape:"vertical", count: 200, loading: "eager" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:bookData, shape:"vertical", count: 200, loading: "eager" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/albums/3-months.html b/src/pages/dynamic/music/albums/3-months.html index e9588623..5aad9984 100644 --- a/src/pages/dynamic/music/albums/3-months.html +++ b/src/pages/dynamic/music/albums/3-months.html @@ -17,4 +17,4 @@ schema: music

You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/albums/this-month.html b/src/pages/dynamic/music/albums/this-month.html index 581c4801..faa0fac8 100644 --- a/src/pages/dynamic/music/albums/this-month.html +++ b/src/pages/dynamic/music/albums/this-month.html @@ -17,4 +17,4 @@ schema: music

You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/albums/this-week.html b/src/pages/dynamic/music/albums/this-week.html index e34b3b21..c829c551 100644 --- a/src/pages/dynamic/music/albums/this-week.html +++ b/src/pages/dynamic/music/albums/this-week.html @@ -17,4 +17,4 @@ schema: music

You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/artists/3-months.html b/src/pages/dynamic/music/artists/3-months.html index c3c77ba6..21f80223 100644 --- a/src/pages/dynamic/music/artists/3-months.html +++ b/src/pages/dynamic/music/artists/3-months.html @@ -17,4 +17,4 @@ schema: music

You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/artists/artist.html b/src/pages/dynamic/music/artists/artist.html index 088af62c..2c665e8d 100644 --- a/src/pages/dynamic/music/artists/artist.html +++ b/src/pages/dynamic/music/artists/artist.html @@ -24,14 +24,14 @@ schema: artist
{{ alt }}You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/artists/this-week.html b/src/pages/dynamic/music/artists/this-week.html index 2c4c0a2f..c6023441 100644 --- a/src/pages/dynamic/music/artists/this-week.html +++ b/src/pages/dynamic/music/artists/this-week.html @@ -17,4 +17,4 @@ schema: music

You can also take a look at the concerts I've been to.


{% endif %} -{% render "partials/media/grid.liquid" data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination shape:"square" %} \ No newline at end of file diff --git a/src/pages/dynamic/music/index.html b/src/pages/dynamic/music/index.html index e0664149..344f25e6 100644 --- a/src/pages/dynamic/music/index.html +++ b/src/pages/dynamic/music/index.html @@ -18,14 +18,14 @@ schema: music-index Artists -{% render "partials/media/grid.liquid", data:music.week.artists, shape:"square", count: 8, loading: "eager" %} +{% render "partials/media/grid.liquid", globals:globals, data:music.week.artists, shape:"square", count: 8, loading: "eager" %}

{% tablericon "vinyl" %} Albums

-{% render "partials/media/grid.liquid", data:music.week.albums, shape:"square", count: 8 %} +{% render "partials/media/grid.liquid", globals:globals, data:music.week.albums, shape:"square", count: 8 %}

{% tablericon "playlist" %} @@ -38,7 +38,7 @@ schema: music-index
- {% render "partials/media/music/recent", data:music.recent %} + {% render "partials/media/music/recent", globals:globals, data:music.recent %}
{% render "partials/media/music/chart.liquid", data:music.week.tracks, count: 10 %} @@ -49,5 +49,5 @@ schema: music-index {% tablericon "calendar-time" %} Anticipated albums

-{% render "partials/media/grid.liquid", data:albumReleases.upcoming, shape:"square", count: 8 %} +{% render "partials/media/grid.liquid", globals:globals, data:albumReleases.upcoming, shape:"square", count: 8 %} {% endif %} \ No newline at end of file diff --git a/src/pages/dynamic/music/periods/3-months.html b/src/pages/dynamic/music/periods/3-months.html index 1fcb17b0..96d74247 100644 --- a/src/pages/dynamic/music/periods/3-months.html +++ b/src/pages/dynamic/music/periods/3-months.html @@ -18,14 +18,14 @@ schema: music-period Artists -{% render "partials/media/grid.liquid", data:music.threeMonth.artists, shape:"square", count: 8, loading: "eager" %} +{% render "partials/media/grid.liquid", globals:globals, data:music.threeMonth.artists, shape:"square", count: 8, loading: "eager" %}

{% tablericon "vinyl" %} Albums

-{% render "partials/media/grid.liquid", data:music.threeMonth.albums, shape:"square", count: 8 %} +{% render "partials/media/grid.liquid", globals:globals, data:music.threeMonth.albums, shape:"square", count: 8 %}

{% tablericon "playlist" %} diff --git a/src/pages/dynamic/music/periods/this-month.html b/src/pages/dynamic/music/periods/this-month.html index c88696c2..78999554 100644 --- a/src/pages/dynamic/music/periods/this-month.html +++ b/src/pages/dynamic/music/periods/this-month.html @@ -18,14 +18,14 @@ schema: music-period Artists

-{% render "partials/media/grid.liquid", data:music.month.artists, shape:"square", count: 8, loading: "eager" %} +{% render "partials/media/grid.liquid", globals:globals, data:music.month.artists, shape:"square", count: 8, loading: "eager" %}

{% tablericon "vinyl" %} Albums

-{% render "partials/media/grid.liquid", data:music.month.albums, shape:"square", count: 8 %} +{% render "partials/media/grid.liquid", globals:globals, data:music.month.albums, shape:"square", count: 8 %}

{% tablericon "playlist" %} diff --git a/src/pages/dynamic/page.html b/src/pages/dynamic/page.html index 01fa9591..80d46c00 100644 --- a/src/pages/dynamic/page.html +++ b/src/pages/dynamic/page.html @@ -6,7 +6,7 @@ pagination: alias: page description: "{{ page.description }}" permalink: "{{ page.permalink }}/index.html" -image: "{{ page.open_graph_image | prepend: 'https://cdn.coryd.dev' | default: globals.avatar }}" +image: "{{ page.open_graph_image | prepend: globals.cdn_url | default: globals.avatar }}" updated: {{ page.updated | default: null }} --- {% render "partials/blocks/index.liquid", blocks:page.blocks %} \ No newline at end of file diff --git a/src/pages/dynamic/posts/post.html b/src/pages/dynamic/posts/post.html index 1511abf2..9560d43a 100644 --- a/src/pages/dynamic/posts/post.html +++ b/src/pages/dynamic/posts/post.html @@ -22,16 +22,16 @@ schema: blog {%- if post.image -%} {{ post.image_alt }}These are my favorite movies. There are many like them, but these are mine.


{% endif %} -{% render "partials/media/grid.liquid", data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file diff --git a/src/pages/dynamic/watching/favorites/shows.html b/src/pages/dynamic/watching/favorites/shows.html index 8987908a..56ccc337 100644 --- a/src/pages/dynamic/watching/favorites/shows.html +++ b/src/pages/dynamic/watching/favorites/shows.html @@ -14,4 +14,4 @@ schema: favorite-shows

These are my favorite shows. There are many like them, but these are mine.


{% endif %} -{% render "partials/media/grid.liquid", data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file diff --git a/src/pages/dynamic/watching/index.html b/src/pages/dynamic/watching/index.html index be9ee38b..2b6c309d 100644 --- a/src/pages/dynamic/watching/index.html +++ b/src/pages/dynamic/watching/index.html @@ -8,7 +8,7 @@ schema: watching --- {%- assign featuredMovie = movies.recentlyWatched | shuffleArray | first -%}

{{ title }}

-{% render "partials/media/watching/hero.liquid" movie:featuredMovie %} +{% render "partials/media/watching/hero.liquid", globals:globals, movie:featuredMovie %}

Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.

{% render "partials/blocks/banners/rss.liquid", url: "/feeds/movies", text: "Subscribe to my movies feed or follow along on this page" %}
@@ -18,14 +18,14 @@ schema: watching Recent movies

-{% render "partials/media/grid.liquid", data:movies.recentlyWatched, shape:"vertical", count: 6 %} +{% render "partials/media/grid.liquid", globals:globals, data:movies.recentlyWatched, shape:"vertical", count: 6 %}

{% tablericon "device-tv-old" %} Recent shows

-{% render "partials/media/grid.liquid", data:tv.recentlyWatched, shape:"vertical", count: 6 %} +{% render "partials/media/grid.liquid", globals:globals, data:tv.recentlyWatched, shape:"vertical", count: 6 %}

{% tablericon "star" %} @@ -33,7 +33,7 @@ schema: watching

{% assign favoriteMovies = movies.favorites | shuffleArray %} -{% render "partials/media/grid.liquid", data:favoriteMovies, shape:"vertical", count: 6 %} +{% render "partials/media/grid.liquid", globals:globals, data:favoriteMovies, shape:"vertical", count: 6 %}

{% tablericon "star" %} @@ -41,4 +41,4 @@ schema: watching

{% assign favoriteShows = tv.favorites | shuffleArray %} -{% render "partials/media/grid.liquid", data:favoriteShows, shape:"vertical", count: 6 %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:favoriteShows, shape:"vertical", count: 6 %} \ No newline at end of file diff --git a/src/pages/dynamic/watching/movie.html b/src/pages/dynamic/watching/movie.html index 424ee201..9e0b820d 100644 --- a/src/pages/dynamic/watching/movie.html +++ b/src/pages/dynamic/watching/movie.html @@ -14,14 +14,14 @@ schema: movie
{{ alt }}These are the movies I've watched recently. There are many like them, but these are mine. (Or well, all the movies I've watched — they're ordered latest watched, descending, hence the recent part).


{% endif %} -{% render "partials/media/grid.liquid", data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file diff --git a/src/pages/dynamic/watching/recent/shows.html b/src/pages/dynamic/watching/recent/shows.html index e1687d39..7563b266 100644 --- a/src/pages/dynamic/watching/recent/shows.html +++ b/src/pages/dynamic/watching/recent/shows.html @@ -14,4 +14,4 @@ schema: watching-shows

These are the shows I've watched recently. There are many like them, but these are mine. (Or well, all the movies I've watched — they're ordered latest watched, descending, hence the recent part).


{% endif %} -{% render "partials/media/grid.liquid", data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file +{% render "partials/media/grid.liquid", globals:globals, data:pagination.items, pagination:pagination, shape:"poster" %} \ No newline at end of file diff --git a/src/pages/dynamic/watching/show.html b/src/pages/dynamic/watching/show.html index f9eb03e1..47ca8adc 100644 --- a/src/pages/dynamic/watching/show.html +++ b/src/pages/dynamic/watching/show.html @@ -14,14 +14,14 @@ schema: show