Revert "fix: cleanup"

This reverts commit 930cc60175.
This commit is contained in:
Cory Dransfeldt 2024-06-09 20:46:18 -07:00
parent 930cc60175
commit f03cee9c5a
No known key found for this signature in database
32 changed files with 47 additions and 47 deletions

View file

@ -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)

View file

@ -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']

View file

@ -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,

View file

@ -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 -%}

View file

@ -8,7 +8,7 @@
<nav aria-label="Secondary site navigation" class="sub-pages flex-centered justify-centered text-centered">
{% for link in nav.footer %}
{% render "partials/nav/link.liquid", page:page, link:link.name, icon:link.icon %}
{% if not forloop.last %}<span>&middot;</span>{% endif %}
{% if not forloop.last %}<span></span>{% endif %}
{% endfor %}
</nav>
</footer>

View file

@ -10,7 +10,7 @@
<div class="title">
<a href="{{ item.url }}">{{ item.title }}</a>
</div>
<div class="subtext">{{ item.artist }} &middot; {{ item.plays }} plays</div>
<div class="subtext">{{ item.artist }} {{ item.plays }} plays</div>
</div>
</div>
{% render "partials/media/progress-bar.liquid", percentage:percentage %}

View file

@ -5,7 +5,7 @@ permalink: "/feeds/all.json"
---
{% render "partials/feeds/json.liquid"
permalink:"/feeds/all.json"
title:"All activity &middot; Cory Dransfeldt"
title:"Cory Dransfeldt: all activity"
data:collections.allContent
updated:collections.allContent[0].date
site:site

View file

@ -5,7 +5,7 @@ permalink: "/feeds/all"
---
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/all"
title:"All activity &middot; 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

View file

@ -6,7 +6,7 @@ permalink: "/feeds/books"
{%- assign bookData = books | bookStatus: 'finished' | bookSortDescending -%}
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/books"
title:"Books &middot; Cory Dransfeldt"
title:"Cory Dransfeldt: books"
description:"Books I'm currently reading."
data:bookData
updated:bookData[0].date

View file

@ -5,7 +5,7 @@ permalink: "/feeds/links"
---
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/links"
title:"Links &middot; Cory Dransfeldt"
title:"Cory Dransfeldt: links"
description:"Links I've liked."
data:links
updated:links[0].date

View file

@ -5,7 +5,7 @@ permalink: "/feeds/movies"
---
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/movies"
title:"Movies &middot; Cory Dransfeldt"
title:"Cory Dransfeldt: movies"
description:"Movies I've watched recently."
data:movies.recentlyWatched
updated:movies.recentlyWatched[0].lastWatched

View file

@ -1,5 +1,5 @@
---
title: Currently reading &middot; 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 -%}
<h2 class="page-header">Currently reading</h2>
<p>Here's what I'm reading at the moment. I've finished <strong class="highlight-text">{{ currentBookCount }} books</strong> this year.</p>
<p><a href="/books/years/2024">2024</a> &middot; <a href="/books/years/2023">2023</a> &middot; <a href="/books/years/2022">2022</a> &middot; <a href="/books/years/2021">2021</a> &middot; <a href="/books/years/2020">2020</a></p>
<p><a href="/books/years/2024">2024</a> <a href="/books/years/2023">2023</a> <a href="/books/years/2022">2022</a> <a href="/books/years/2021">2021</a> <a href="/books/years/2020">2020</a></p>
{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
<hr class="large-spacing" />
{% for book in bookData %}

View file

@ -1,5 +1,5 @@
---
title: 2020 &middot; 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

View file

@ -1,5 +1,5 @@
---
title: 2021 &middot; 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

View file

@ -1,5 +1,5 @@
---
title: 2022 &middot; 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

View file

@ -1,5 +1,5 @@
---
title: 2023 &middot; 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

View file

@ -1,5 +1,5 @@
---
title: 2024 &middot; Books
title: 2024 Books
description: "Here's what I'm reading at the moment."
year: 2024
layout: partials/media/books/year

View file

@ -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) &middot; [JSON](https://feedpress.me/coryd.json)): posts from my site.
- Links ([RSS](https://feedpress.me/coryd-links) &middot; [JSON](https://feedpress.me/coryd-links.json)): links I've liked.
- Books ([RSS](https://feedpress.me/coryd-books) &middot; [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading.
- Movies ([RSS](https://feedpress.me/coryd-movies) &middot; [JSON](https://feedpress.me/coryd-books.json)): movies I've watched recently.
- All ([RSS](https://feedpress.me/coryd-all) &middot; [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.

View file

@ -1,5 +1,5 @@
---
title: Albums &middot; 3 months
title: Albums 3 months
description: All of the albums I've listened to over the last 3 months.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Albums &middot; This month
title: Albums This month
description: All of the albums I've listened to over the past month.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Albums &middot; This week
title: Albums This week
description: All of the albums I've listened to this week.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Artists &middot; 3 months
title: Artists 3 months
description: All of the artists I've listened to over the last 3 months.
layout: default
pagination:

View file

@ -9,7 +9,7 @@ updated: "now"
schema: artist
---
{%- capture alt -%}
{{ artist.name_string }} &middot; {{ artist.country }}
{{ artist.name_string }} {{ artist.country }}
{%- endcapture -%}
{% capture js %}
{% render "../../../../assets/scripts/text-toggle.js" %}

View file

@ -1,5 +1,5 @@
---
title: Artists &middot; This month
title: Artists This month
description: All of the artists I've listened to over the past month.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Artists &middot; This week
title: Artists This week
description: All of the artists I've listened to this week.
layout: default
pagination:

View file

@ -35,7 +35,7 @@ schema: music-index
<div class="hidden" id="artists-three-months">
{% render "partials/media/grid.liquid", data:music.threeMonth.artists, shape: "square", count: 8 %}
</div>
<p><strong class="highlight-text">More:</strong> <a href="/music/artists/this-week/" title="Artists listened to this week">This week</a> &middot; <a href="/music/artists/this-month/" title="Artists listened to this month">This month</a> &middot; <a href="/music/artists/three-months/" title="Artists listened to in the last 3 months">3 months</a></p>
<p><strong class="highlight-text">More:</strong> <a href="/music/artists/this-week/" title="Artists listened to this week">This week</a> <a href="/music/artists/this-month/" title="Artists listened to this month">This month</a> <a href="/music/artists/three-months/" title="Artists listened to in the last 3 months">3 months</a></p>
<div class="section-header-wrapper">
<h2 id="albums" class="section-header reduced-margin flex-centered">
{% tablericon "vinyl" "Albums" %}
@ -56,7 +56,7 @@ schema: music-index
<div class="hidden" id="albums-three-months">
{% render "partials/media/grid.liquid", data:music.threeMonth.albums, shape: "square", count: 8 %}
</div>
<p><strong class="highlight-text">More:</strong> <a href="/music/albums/this-week/" title="Albums listened to this week">This week</a> &middot; <a href="/music/albums/this-month/" title="Albums listened to this month">This month</a> &middot; <a href="/music/albums/three-months/" title="Albums listened to in the last 3 months">3 months</a></p>
<p><strong class="highlight-text">More:</strong> <a href="/music/albums/this-week/" title="Albums listened to this week">This week</a> <a href="/music/albums/this-month/" title="Albums listened to this month">This month</a> <a href="/music/albums/three-months/" title="Albums listened to in the last 3 months">3 months</a></p>
<div class="section-header-wrapper">
<h2 id="tracks" class="section-header reduced-margin flex-centered">
{% tablericon "playlist" "Tracks" %}
@ -81,7 +81,7 @@ schema: music-index
<div class="hidden" id="tracks-three-months">
{% render "partials/media/music/chart.liquid", data:music.threeMonth.tracks, mostPlayed:music.threeMonth.tracks[0].plays, count: 10 %}
</div>
<p><strong class="highlight-text">More:</strong> <a href="/music/tracks/this-week/" title="Tracks listened to this week">This week</a> &middot; <a href="/music/tracks/this-month/" title="Tracks listened to this month">This month</a> &middot; <a href="/music/tracks/three-months/" title="Tracks listened to in the last 3 months">3 months</a></p>
<p><strong class="highlight-text">More:</strong> <a href="/music/tracks/this-week/" title="Tracks listened to this week">This week</a> <a href="/music/tracks/this-month/" title="Tracks listened to this month">This month</a> <a href="/music/tracks/three-months/" title="Tracks listened to in the last 3 months">3 months</a></p>
{% if albumReleases.size > 0 %}
<h2 id="album-releases" class="section-header flex-centered">
{% tablericon "calendar-time" "Anticipated albums" %}

View file

@ -1,5 +1,5 @@
---
title: Tracks &middot; 3 months
title: Tracks 3 months
description: All of the tracks I've listened to over the last 3 months.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Tracks &middot; This month
title: Tracks This month
description: All of the tracks I've listened to over the past month.
layout: default
pagination:

View file

@ -1,5 +1,5 @@
---
title: Tracks &middot; This week
title: Tracks This week
description: All of the tracks I've listened to this week.
layout: default
pagination:

View file

@ -8,7 +8,7 @@ permalink: /watching/movies/{{ movie.id }}/index.html
schema: movie
---
{%- capture alt -%}
{{ movie.title }} &middot; {{ movie.year }}{% if move.rating %} ({{ movie.rating }}){% endif %}
{{ movie.title }} {{ movie.year }}{% if move.rating %} ({{ movie.rating }}){% endif %}
{%- endcapture -%}
<a class="back-link-header link-icon flex-centered" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" "Go back" %} Go back</a>
<article class="watching-focus">

View file

@ -8,7 +8,7 @@ permalink: /watching/shows/{{ show.tmdb_id }}/index.html
schema: show
---
{%- capture alt -%}
{{ show.title }} &middot; {{ show.year }}
{{ show.title }} {{ show.year }}
{%- endcapture -%}
{% assign lastWatched = show | getLastWatched %}
<a class="back-link-header link-icon flex-centered" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" "Go back" %} Go back</a>

View file

@ -24,10 +24,10 @@ description: These are awesome blogs that I enjoy and you may enjoy too.
{%- endif -%}
{%- if blog.json_feed -%}
&middot; <a href="{{ blog.json_feed }}">{% tablericon "json" "Subscribe via JSON" %}</a>
<a href="{{ blog.json_feed }}">{% tablericon "json" "Subscribe via JSON" %}</a>
{%- endif -%}
{%- if blog.newsletter -%}
&middot; <a href="{{ blog.newsletter }}">{% tablericon "mail-plus" "Newsletter subscription" %}</a>
<a href="{{ blog.newsletter }}">{% tablericon "mail-plus" "Newsletter subscription" %}</a>
{%- endif -%}
</td>
</tr>