diff --git a/README.md b/README.md index 9228b64d..325eff9b 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 9278915c..5ba7eea5 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 b42ee133..4c87677b 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/base.liquid b/src/_includes/base.liquid index 98ba744b..07799831 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -4,23 +4,23 @@ {%- if schema == 'blog' -%} {%- assign pageTitle = post.title -%} {%- elsif title -%} - {%- assign pageTitle = title | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = title | append: ' / ' | append: meta.siteName -%} {%- elsif artist.name_string -%} - {%- assign pageTitle = 'Artists · ' | append: artist.name_string | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = 'Artists / ' | append: artist.name_string | append: ' / ' | append: meta.siteName -%} {%- elsif schema == 'music-index' -%} - {%- assign pageTitle = 'Music · ' | append: meta.siteName -%} + {%- assign pageTitle = 'Music / ' | append: meta.siteName -%} {%- elsif genre.name -%} - {%- assign pageTitle = 'Music · ' | append: genre.name | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = 'Music / ' | append: genre.name | append: ' / ' | append: meta.siteName -%} {%- elsif book.title -%} - {%- assign pageTitle = 'Books · ' | append: book.title | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = 'Books / ' | append: book.title | append: ' / ' | append: meta.siteName -%} {%- elsif movie.title -%} - {%- assign pageTitle = 'Movies · ' | append: movie.title -%} + {%- assign pageTitle = 'Movies / ' | append: movie.title -%} {%- if movie.rating -%} {%- assign pageTitle = pageTitle | append: ' (' | append: movie.rating | append: ')' -%} {%- endif -%} - {%- assign pageTitle = pageTitle | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = pageTitle | append: ' / ' | append: meta.siteName -%} {%- elsif show.title -%} - {%- assign pageTitle = 'Shows · ' | append: show.title | append: ' · ' | append: meta.siteName -%} + {%- assign pageTitle = 'Shows / ' | append: show.title | append: ' / ' | append: meta.siteName -%} {%- endif -%} {%- assign pageDescription = meta.siteDescription -%} diff --git a/src/_includes/partials/footer.liquid b/src/_includes/partials/footer.liquid index f3db8161..876473f6 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 a6ada983..a6223f2f 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/feeds/all.json.liquid b/src/feeds/all.json.liquid index 49d571cf..b9ffe53a 100644 --- a/src/feeds/all.json.liquid +++ b/src/feeds/all.json.liquid @@ -5,7 +5,7 @@ permalink: "/feeds/all.json" --- {% render "partials/feeds/json.liquid" permalink:"/feeds/all.json" - title:"All activity · Cory Dransfeldt" + title:"Cory Dransfeldt: all activity" data:collections.allContent updated:collections.allContent[0].date site:site diff --git a/src/feeds/all.liquid b/src/feeds/all.liquid index 316b4fe8..5d2f2822 100644 --- a/src/feeds/all.liquid +++ b/src/feeds/all.liquid @@ -5,7 +5,7 @@ permalink: "/feeds/all" --- {% render "partials/feeds/rss.liquid" permalink:"/feeds/all" - title:"All activity · Cory Dransfeldt" + title:"Cory Dransfeldt: all activity" description:"All of the posts and activity from my site." data:collections.allContent updated:collections.allContent[0].date diff --git a/src/feeds/books.liquid b/src/feeds/books.liquid index 4b7f5083..634ed85e 100644 --- a/src/feeds/books.liquid +++ b/src/feeds/books.liquid @@ -6,7 +6,7 @@ permalink: "/feeds/books" {%- assign bookData = books | bookStatus: 'finished' | bookSortDescending -%} {% render "partials/feeds/rss.liquid" permalink:"/feeds/books" - title:"Books · Cory Dransfeldt" + title:"Cory Dransfeldt: books" description:"Books I'm currently reading." data:bookData updated:bookData[0].date diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid index f41ce3bc..b7554534 100644 --- a/src/feeds/links.liquid +++ b/src/feeds/links.liquid @@ -5,7 +5,7 @@ permalink: "/feeds/links" --- {% render "partials/feeds/rss.liquid" permalink:"/feeds/links" - title:"Links · Cory Dransfeldt" + title:"Cory Dransfeldt: links" description:"Links I've liked." data:links updated:links[0].date diff --git a/src/feeds/movies.liquid b/src/feeds/movies.liquid index 322d3231..ab2e711a 100644 --- a/src/feeds/movies.liquid +++ b/src/feeds/movies.liquid @@ -5,7 +5,7 @@ permalink: "/feeds/movies" --- {% render "partials/feeds/rss.liquid" permalink:"/feeds/movies" - title:"Movies · Cory Dransfeldt" + title:"Cory Dransfeldt: movies" description:"Movies I've watched recently." data:movies.recentlyWatched updated:movies.recentlyWatched[0].lastWatched diff --git a/src/pages/main/books/index.html b/src/pages/main/books/index.html index 8482c74c..c4b9a07f 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.

-

2024 · 2023 · 2022 · 2021 · 2020

+

20242023202220212020

{% 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 4c9a39d5..a6ab4a86 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 7c0214e3..15e5ee22 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 df1cf775..3e0c6ba8 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 4d3c6e84..090e147b 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 069df4c7..490649b2 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/feeds.md b/src/pages/main/feeds.md index 46804a06..30bd3a4a 100644 --- a/src/pages/main/feeds.md +++ b/src/pages/main/feeds.md @@ -9,8 +9,8 @@ description: Content feeds exposed by and generated from my site. These are web feeds, also known as [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. Subscribe by copying the URL from the address bar into your newsreader. Visit [About Feeds](https://aboutfeeds.com) to get started with newsreaders and subscribing. It's free. -- Posts ([RSS](https://feedpress.me/coryd) · [JSON](https://feedpress.me/coryd.json)): posts from my site. -- Links ([RSS](https://feedpress.me/coryd-links) · [JSON](https://feedpress.me/coryd-links.json)): links I've liked. -- Books ([RSS](https://feedpress.me/coryd-books) · [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading. -- Movies ([RSS](https://feedpress.me/coryd-movies) · [JSON](https://feedpress.me/coryd-books.json)): movies I've watched recently. -- All ([RSS](https://feedpress.me/coryd-all) · [JSON](https://feedpress.me/coryd-all.json)): all of the posts and activity from my site. +- Posts ([RSS](https://feedpress.me/coryd) or [JSON](https://feedpress.me/coryd.json)): posts from my site. +- Links ([RSS](https://feedpress.me/coryd-links) or [JSON](https://feedpress.me/coryd-links.json)): links I've liked. +- Books ([RSS](https://feedpress.me/coryd-books) or [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading. +- Movies ([RSS](https://feedpress.me/coryd-movies) or [JSON](https://feedpress.me/coryd-books.json)): movies I've watched recently. +- All ([RSS](https://feedpress.me/coryd-all) or [JSON](https://feedpress.me/coryd-all.json)): all of the posts and activity from my site. diff --git a/src/pages/main/music/albums/3-months.html b/src/pages/main/music/albums/3-months.html index 94384d86..06596f16 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 6e6f0859..a5c40f6d 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 f5a87c47..6a3c6cd0 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 39ae83e0..b4b451ab 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 644bafec..7f80f6d6 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 b168dfcd..f1ead2f9 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 390d6c36..263e9c91 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 89307ee0..94fc4e28 100644 --- a/src/pages/main/music/index.html +++ b/src/pages/main/music/index.html @@ -35,7 +35,7 @@ schema: music-index -

More: This week · This month · 3 months

+

More: This weekThis month3 months

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

More: This week · This month · 3 months

+

More: This weekThis month3 months

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

More: This week · This month · 3 months

+

More: This weekThis month3 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 35ab030e..bb18e099 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 4f1e895f..cd7aabf6 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 e72c298e..9a70f994 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 e6152ecd..27a6f59d 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 7a1497a6..4fe849a8 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 46d16474..e8569e57 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 -%}