From df36cd266c40365c56456644fe7a50ac86caf7b9 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 9 Jun 2024 20:49:12 -0700 Subject: [PATCH] fix: cleanup --- README.md | 2 +- config/filters/index.js | 2 +- src/_data/tv.js | 2 +- src/_includes/partials/footer.liquid | 2 +- src/_includes/partials/media/music/chart.liquid | 2 +- src/pages/main/books/index.html | 4 ++-- src/pages/main/books/years/2020.html | 2 +- src/pages/main/books/years/2021.html | 2 +- src/pages/main/books/years/2022.html | 2 +- src/pages/main/books/years/2023.html | 2 +- src/pages/main/books/years/2024.html | 2 +- src/pages/main/music/albums/3-months.html | 2 +- src/pages/main/music/albums/this-month.html | 2 +- src/pages/main/music/albums/this-week.html | 2 +- src/pages/main/music/artists/3-months.html | 2 +- src/pages/main/music/artists/artist.html | 2 +- src/pages/main/music/artists/this-month.html | 2 +- src/pages/main/music/artists/this-week.html | 2 +- src/pages/main/music/index.html | 6 +++--- src/pages/main/music/tracks/3-months.html | 2 +- src/pages/main/music/tracks/this-month.html | 2 +- src/pages/main/music/tracks/this-week.html | 2 +- src/pages/main/watching/movie.html | 2 +- src/pages/main/watching/show.html | 2 +- src/pages/secondary/blogroll.html | 4 ++-- 25 files changed, 29 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 325eff9b..6bd3a665 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ This is the code for my personal website and portfolio. Built using [11ty](https [![Follow @cory@social.lol on Mastodon](https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=88)](https://social.lol/@cory) [![Buy me a Coffee](https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=88)](https://www.buymeacoffee.com/cory) [![Made with 11ty](https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=88)](https://eleventy.dev) -[Music](https://coryd.dev/music) • [Watching](https://coryd.dev/watching) • [Books](https://coryd.dev/books) • [Now](https://coryd.dev/now) +[Music](https://coryd.dev/music) / [Watching](https://coryd.dev/watching) / [Books](https://coryd.dev/books) / [Now](https://coryd.dev/now) diff --git a/config/filters/index.js b/config/filters/index.js index 5ba7eea5..821adf71 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -141,7 +141,7 @@ export default { if (item.type === 'album-release') { normalized['title'] = item['title'] normalized['alt'] = `${item['title']} by ${item['artist']}` - normalized['subtext'] = `${item['artist']} • ${item['date']}` + normalized['subtext'] = `${item['artist']} / ${item['date']}` } if (item.type === 'movie') { normalized['title'] = item['title'] diff --git a/src/_data/tv.js b/src/_data/tv.js index 4c87677b..fd7ff75f 100644 --- a/src/_data/tv.js +++ b/src/_data/tv.js @@ -91,7 +91,7 @@ export default async function () { showEpisodesMap[showTmdbId].episodes.push({ name: showTitle, url: `/watching/shows/${showTmdbId}`, - subtext: `${showTitle} • S${seasonNumber}E${episodeNumber}`, + subtext: `${showTitle} / S${seasonNumber}E${episodeNumber}`, episode: episodeNumber, season: seasonNumber, tmdbId: showTmdbId, diff --git a/src/_includes/partials/footer.liquid b/src/_includes/partials/footer.liquid index 876473f6..0bb8d609 100644 --- a/src/_includes/partials/footer.liquid +++ b/src/_includes/partials/footer.liquid @@ -8,7 +8,7 @@ diff --git a/src/_includes/partials/media/music/chart.liquid b/src/_includes/partials/media/music/chart.liquid index a6223f2f..3ca72aea 100644 --- a/src/_includes/partials/media/music/chart.liquid +++ b/src/_includes/partials/media/music/chart.liquid @@ -10,7 +10,7 @@
{{ item.title }}
-
{{ item.artist }} • {{ item.plays }} plays
+
{{ item.artist }}: {{ item.plays }} plays
{% render "partials/media/progress-bar.liquid", percentage:percentage %} diff --git a/src/pages/main/books/index.html b/src/pages/main/books/index.html index c4b9a07f..2d224cdd 100644 --- a/src/pages/main/books/index.html +++ b/src/pages/main/books/index.html @@ -1,5 +1,5 @@ --- -title: Currently reading • Books +title: Currently reading / Books description: Here's what I'm reading at the moment. layout: default permalink: "/books/index.html" @@ -10,7 +10,7 @@ schema: books {%- assign currentBookCount = books | currentBookCount -%}

Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year.

-

20242023202220212020

+

2024 / 2023 / 2022 / 2021 / 2020

{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
{% for book in bookData %} diff --git a/src/pages/main/books/years/2020.html b/src/pages/main/books/years/2020.html index a6ab4a86..89bfd584 100644 --- a/src/pages/main/books/years/2020.html +++ b/src/pages/main/books/years/2020.html @@ -1,5 +1,5 @@ --- -title: 2020 • Books +title: 2020 / Books description: "This is everything I read in 2020. My favorites were: every book in The Expanse series and I'll Be Gone in the Dark. I finished 34 books in 2020." year: 2020 layout: partials/media/books/year diff --git a/src/pages/main/books/years/2021.html b/src/pages/main/books/years/2021.html index 15e5ee22..1f053a5c 100644 --- a/src/pages/main/books/years/2021.html +++ b/src/pages/main/books/years/2021.html @@ -1,5 +1,5 @@ --- -title: 2021 • Books +title: 2021 / Books description: "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. I finished 53 books in 2021." year: 2021 layout: partials/media/books/year diff --git a/src/pages/main/books/years/2022.html b/src/pages/main/books/years/2022.html index 3e0c6ba8..5ab8913f 100644 --- a/src/pages/main/books/years/2022.html +++ b/src/pages/main/books/years/2022.html @@ -1,5 +1,5 @@ --- -title: 2022 • Books +title: 2022 / Books description: "This is everything I read in 2022. My favorites were: Sellout, The Sins of Our Fathers, Drive, Adnan's Story and The Lazarus Heist. I finished 67 books in 2022." year: 2022 layout: partials/media/books/year diff --git a/src/pages/main/books/years/2023.html b/src/pages/main/books/years/2023.html index 090e147b..4a28c048 100644 --- a/src/pages/main/books/years/2023.html +++ b/src/pages/main/books/years/2023.html @@ -1,5 +1,5 @@ --- -title: 2023 • Books +title: 2023 / Books description: "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. I finished 69 books in 2023." year: 2023 layout: partials/media/books/year diff --git a/src/pages/main/books/years/2024.html b/src/pages/main/books/years/2024.html index 490649b2..e0b69de6 100644 --- a/src/pages/main/books/years/2024.html +++ b/src/pages/main/books/years/2024.html @@ -1,5 +1,5 @@ --- -title: 2024 • Books +title: 2024 / Books description: "Here's what I'm reading at the moment." year: 2024 layout: partials/media/books/year diff --git a/src/pages/main/music/albums/3-months.html b/src/pages/main/music/albums/3-months.html index 06596f16..e4ae8f74 100644 --- a/src/pages/main/music/albums/3-months.html +++ b/src/pages/main/music/albums/3-months.html @@ -1,5 +1,5 @@ --- -title: Albums • 3 months +title: Albums / 3 months description: All of the albums I've listened to over the last 3 months. layout: default pagination: diff --git a/src/pages/main/music/albums/this-month.html b/src/pages/main/music/albums/this-month.html index a5c40f6d..44fa175c 100644 --- a/src/pages/main/music/albums/this-month.html +++ b/src/pages/main/music/albums/this-month.html @@ -1,5 +1,5 @@ --- -title: Albums • This month +title: Albums / This month description: All of the albums I've listened to over the past month. layout: default pagination: diff --git a/src/pages/main/music/albums/this-week.html b/src/pages/main/music/albums/this-week.html index 6a3c6cd0..78d17474 100644 --- a/src/pages/main/music/albums/this-week.html +++ b/src/pages/main/music/albums/this-week.html @@ -1,5 +1,5 @@ --- -title: Albums • This week +title: Albums / This week description: All of the albums I've listened to this week. layout: default pagination: diff --git a/src/pages/main/music/artists/3-months.html b/src/pages/main/music/artists/3-months.html index b4b451ab..1b2abbf8 100644 --- a/src/pages/main/music/artists/3-months.html +++ b/src/pages/main/music/artists/3-months.html @@ -1,5 +1,5 @@ --- -title: Artists • 3 months +title: Artists / 3 months description: All of the artists I've listened to over the last 3 months. layout: default pagination: diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index 7f80f6d6..03b4dfdd 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -9,7 +9,7 @@ updated: "now" schema: artist --- {%- capture alt -%} - {{ artist.name_string }} • {{ artist.country }} + {{ artist.name_string }} / {{ artist.country }} {%- endcapture -%} {% capture js %} {% render "../../../../assets/scripts/text-toggle.js" %} diff --git a/src/pages/main/music/artists/this-month.html b/src/pages/main/music/artists/this-month.html index f1ead2f9..fe18882d 100644 --- a/src/pages/main/music/artists/this-month.html +++ b/src/pages/main/music/artists/this-month.html @@ -1,5 +1,5 @@ --- -title: Artists • This month +title: Artists / This month description: All of the artists I've listened to over the past month. layout: default pagination: diff --git a/src/pages/main/music/artists/this-week.html b/src/pages/main/music/artists/this-week.html index 263e9c91..1f6df424 100644 --- a/src/pages/main/music/artists/this-week.html +++ b/src/pages/main/music/artists/this-week.html @@ -1,5 +1,5 @@ --- -title: Artists • This week +title: Artists / This week description: All of the artists I've listened to this week. layout: default pagination: diff --git a/src/pages/main/music/index.html b/src/pages/main/music/index.html index 94fc4e28..749e191d 100644 --- a/src/pages/main/music/index.html +++ b/src/pages/main/music/index.html @@ -35,7 +35,7 @@ schema: music-index -

More: This weekThis month3 months

+

More: This week / This month / 3 months

{% tablericon "vinyl" "Albums" %} @@ -56,7 +56,7 @@ schema: music-index -

More: This weekThis month3 months

+

More: This week / This month / 3 months

{% tablericon "playlist" "Tracks" %} @@ -81,7 +81,7 @@ schema: music-index -

More: This weekThis month3 months

+

More: This week / This month / 3 months

{% if albumReleases.size > 0 %}

{% tablericon "calendar-time" "Anticipated albums" %} diff --git a/src/pages/main/music/tracks/3-months.html b/src/pages/main/music/tracks/3-months.html index bb18e099..1e13e6ea 100644 --- a/src/pages/main/music/tracks/3-months.html +++ b/src/pages/main/music/tracks/3-months.html @@ -1,5 +1,5 @@ --- -title: Tracks • 3 months +title: Tracks / 3 months description: All of the tracks I've listened to over the last 3 months. layout: default pagination: diff --git a/src/pages/main/music/tracks/this-month.html b/src/pages/main/music/tracks/this-month.html index cd7aabf6..385e1195 100644 --- a/src/pages/main/music/tracks/this-month.html +++ b/src/pages/main/music/tracks/this-month.html @@ -1,5 +1,5 @@ --- -title: Tracks • This month +title: Tracks / This month description: All of the tracks I've listened to over the past month. layout: default pagination: diff --git a/src/pages/main/music/tracks/this-week.html b/src/pages/main/music/tracks/this-week.html index 9a70f994..94cc2d52 100644 --- a/src/pages/main/music/tracks/this-week.html +++ b/src/pages/main/music/tracks/this-week.html @@ -1,5 +1,5 @@ --- -title: Tracks • This week +title: Tracks / This week description: All of the tracks I've listened to this week. layout: default pagination: diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html index 27a6f59d..bf1dbe8d 100644 --- a/src/pages/main/watching/movie.html +++ b/src/pages/main/watching/movie.html @@ -8,7 +8,7 @@ permalink: /watching/movies/{{ movie.id }}/index.html schema: movie --- {%- capture alt -%} - {{ movie.title }} • {{ movie.year }}{% if move.rating %} ({{ movie.rating }}){% endif %} + {{ movie.title }} / {{ movie.year }}{% if move.rating %} ({{ movie.rating }}){% endif %} {%- endcapture -%} {% tablericon "arrow-left" "Go back" %} Go back
diff --git a/src/pages/main/watching/show.html b/src/pages/main/watching/show.html index 4fe849a8..44835a05 100644 --- a/src/pages/main/watching/show.html +++ b/src/pages/main/watching/show.html @@ -8,7 +8,7 @@ permalink: /watching/shows/{{ show.tmdb_id }}/index.html schema: show --- {%- capture alt -%} - {{ show.title }} • {{ show.year }} + {{ show.title }} / {{ show.year }} {%- endcapture -%} {% assign lastWatched = show | getLastWatched %} {% tablericon "arrow-left" "Go back" %} Go back diff --git a/src/pages/secondary/blogroll.html b/src/pages/secondary/blogroll.html index e8569e57..72a2da84 100644 --- a/src/pages/secondary/blogroll.html +++ b/src/pages/secondary/blogroll.html @@ -24,10 +24,10 @@ description: These are awesome blogs that I enjoy and you may enjoy too. — {%- endif -%} {%- if blog.json_feed -%} - • {% tablericon "json" "Subscribe via JSON" %} + / {% tablericon "json" "Subscribe via JSON" %} {%- endif -%} {%- if blog.newsletter -%} - • {% tablericon "mail-plus" "Newsletter subscription" %} + / {% tablericon "mail-plus" "Newsletter subscription" %} {%- endif -%}