Update to Eleventy v3 #11

Merged
wonderfulfrog merged 56 commits from feat/11ty-v3 into main 2025-01-27 18:23:38 -08:00
29 changed files with 115 additions and 129 deletions
Showing only changes of commit 68d4d48e16 - Show all commits

View file

@ -1,6 +0,0 @@
export default {
tags: "catalogue",
eleventyComputed: {
description: (data) => `My thoughts on ${data.title}.`,
},
};

View file

@ -1,10 +0,0 @@
---
title: "The Monster Sisters"
publisher: "Orca Books"
author: "Gareth Gaudin"
year: 2021
isbn: 9781459822290
rating: 4
image: https://cdn.wonderfulfrog.com/images/the-monster-sisters-vol-2.jpg
tags: ["adventure"]
---

View file

@ -1,16 +0,0 @@
---
title: "Monstress: Awakening"
publisher: Image Comics
author: Majorie Liu, Sana Takeda
volume: 1
year: 2017
image: https://cdn.wonderfulfrog.com/images/monstress-vol-1.jpeg
rating: 3
tags: ["fantasy"]
---
The first 75% of the volume is quite confusing. Its like reading the second or third volume in a series without reading the first. I get starting with a mystery as a hook, but when every second word is something new, I get confused!
Im not convinced that comics are the best form of world building, at least through expository dialogue. When several entire pages that are at least half-filled with text, I think theres a problem.
The artwork is praised often elsewhere and I must agree - every page (even panel) could stand on its own. Absolutely stunning. The world building on the visual level absolutely nails it. If atmosphere is set within the first few pages and Im here for it.

View file

@ -1,17 +0,0 @@
---
title: "Monstress: The Blood"
publisher: Image Comics
author: Majorie Lui, Sana Takeda
volume: 2
year: 2017
image: https://cdn.wonderfulfrog.com/images/monstress-vol-2-tp_77ea1f170a.jpg
isbn: 9781534300415
rating: 3
tags: ["fantasy"]
---
I love the cast of the story. We are introduced to some new characters with a heavy nautical theme. Old Tooth the shark-person looks straight out of the 90s (remember Street Sharks?). The artwork continues to be the main selling point for me.
Where things falter though has to be the writing (again). There are less mysteries to track and more emphasis on character development, but Im finding it so dense that its hard to follow. It practically requires a wiki open while reading. There is so much to pack into a graphic novel with limited pages. I think the series would do better as a novel if Im completely honest.
I cant get into the story, but Sana Takedas art is so phenomenal I want to keep going.

View file

@ -1,8 +0,0 @@
export default {
tags: "comic",
permalink: "catalogue/comics/{{ page.fileSlug }}/index.html",
eleventyComputed: {
tertiary: (data) =>
`<p class="[ flow-space-0.5 ]"><span class="[ text-fadeText ]">by</span> ${data.author}</p>`,
},
};

View file

@ -1,10 +0,0 @@
---
title: Hunting Warhead
rating: 5
image: https://cdn.wonderfulfrog.com/images/hunting-warhead.webp
url: https://www.cbc.ca/listen/cbc-podcasts/387-hunting-warhead
---
A chilling and gripping history telling the story of how one of the largest networks of CSAM was taken down by tracking its biggest maintainer.
[Listen to the podcast](https://www.cbc.ca/listen/cbc-podcasts/387-hunting-warhead)

View file

@ -1,15 +0,0 @@
---
title: Maintenance Phase
rating: 5
image: https://cdn.wonderfulfrog.com/images/maintenance-phase.webp
url: https://www.maintenancephase.com/
---
A phenomenal podcast that challenged everything I knew about fatness, dieting, food, and my own relationship with each. I don't say this lightly but it has been a life-changing revelation for me. I devour every new episode with fervor and eagerly consume all their content.
## Favourite episodes
- [Dr. Oz](https://maintenancephase.buzzsprout.com/1411126/7857472-dr-oz)
- [Halo Top Ice Cream](https://maintenancephase.buzzsprout.com/1411126/7127890-halo-top-ice-cream)
- [The Biggest Loser](https://maintenancephase.buzzsprout.com/1411126/7353850-the-biggest-loser)
I used to watch this show religiously with my parents. I'd look to it at times for inspiration. Realizing the literal hell the cast when through now is horrifying.

View file

@ -1,13 +0,0 @@
---
title: Reply All
url: https://gimletmedia.com/shows/reply-all
rating: 3
image: https://cdn.wonderfulfrog.com/images/reply-all.jpeg
---
There are too many episodes to this podcast, but I have been shared a few interesting ones from my partner. I was never a regular listener, and have not listened since it [effectively imploded](https://www.vulture.com/article/gimlet-reply-all-controversy-spotify-test-kitchen.html)
## Favourite episodes
- [The Case of the Missing Hit](https://pca.st/episode/cc572c51-e2bd-41fe-a138-d4f8ecba3549)
This is a real journey. There are so many fun twists and turns.

View file

@ -1,5 +0,0 @@
export default {
tags: "podcast",
permalink: "catalogue/podcasts/{{ page.fileSlug }}/index.html",
linkTitle: "Listen to the podcast",
};

View file

@ -67,5 +67,8 @@ permalink: /
<li> <li>
<a href="/contact" class="button">Contact</a> <a href="/contact" class="button">Contact</a>
</li> </li>
<li>
<a href="/podroll" class="button">Podroll</a>
</li>
</ul> </ul>
</section> </section>

38
src/pages/podroll.html Normal file
View file

@ -0,0 +1,38 @@
---
title: Podroll
description: Some podcasts that I enjoy!
permalink: "podroll/index.html"
---
{% set data = collections.podcast | reverse %}
<header class="flow flow-space-1">
<h1>Podroll</h1>
<p class="text-fadeText flow-space-0.25">Some podcasts that I enjoy!</p>
</header>
<section class="flow switcher">
{% for item in data %}
<div class="card flow">
<div class="flex items-center gap-0.5">
<h2>{{ item.data.title }}</h2>
{% if item.data.isCompleted %}<span class="pill">Completed</span>{% endif %}
</div>
<p class="flow-space-0.5">{{ item.data.description }}</p>
<div class="flex gap-0.5">
{% if item.data.url %}<a href="{{ item.data.url }}" target="_blank">Website</a>{% endif %}
{% if item.data.rss %}<a href="{{ item.data.rss }}" target="_blank">RSS</a>{% endif %}
</div>
{% if item.content %}
<details>
<summary>
{% if item.data.moreText %}
{{ item.data.moreText }}
{% else %}
More info
{% endif %}
</summary>
<div class="flow">{{ item.content | safe }}</div>
</details>
{% endif %}
</div>
{% endfor %}
</section>

View file

@ -1,13 +1,12 @@
--- ---
title: History of the 90s title: History of the 90s
rating: 4
image: https://cdn.wonderfulfrog.com/images/history-of-the-90s.jpeg image: https://cdn.wonderfulfrog.com/images/history-of-the-90s.jpeg
url: https://curiouscast.ca/podcast/466/history-of-the-90s/ url: https://curiouscast.ca/podcast/466/history-of-the-90s/
rss: https://www.omnycontent.com/d/playlist/fdc2ad13-d199-4e97-b2db-a59300cb6cc2/3164bc6f-23d3-435e-92c4-aa6a012d02b6/72253a5d-9601-4cbe-98d1-aa6a012d02cc/podcast.rss
isCompleted: false
description: It's the history... of the '90s.
moreText: "Suggested episodes"
--- ---
As a bona fide 90s kid, this podcast was made for me. I'm enjoying a trip down memory lane, but also learning so much about the 90s that I had no idea about, or did not learn about at the time.
## Favourite episodes
- [Woodstock 99](https://curiouscast.ca/podcast/466/history-of-the-90s/) - [Woodstock 99](https://curiouscast.ca/podcast/466/history-of-the-90s/)
- [Grunge (Part 1 & 2)](https://curiouscast.ca/podcast/466/history-of-the-90s/) - [Grunge (Part 1 & 2)](https://curiouscast.ca/podcast/466/history-of-the-90s/)

View file

@ -0,0 +1,7 @@
---
title: Hunting Warhead
image: https://cdn.wonderfulfrog.com/images/hunting-warhead.webp
url: https://www.cbc.ca/listen/cbc-podcasts/387-hunting-warhead
isCompleted: true
description: A chilling and gripping history telling the story of how one of the largest networks of CSAM was taken down by tracking its biggest maintainer.
---

View file

@ -0,0 +1,12 @@
---
title: Maintenance Phase
image: https://cdn.wonderfulfrog.com/images/maintenance-phase.webp
url: https://www.maintenancephase.com/
isCompleted: false
description: A phenomenal podcast that challenged everything I knew about fatness, dieting, food, and my own relationship with each. I don't say this lightly but it has been a life-changing revelation for me. I devour every new episode with fervor and eagerly consume all their content.
moreText: "Suggested episodes"
---
- [Dr. Oz](https://maintenancephase.buzzsprout.com/1411126/7857472-dr-oz)
- [Halo Top Ice Cream](https://maintenancephase.buzzsprout.com/1411126/7127890-halo-top-ice-cream)
- [The Biggest Loser](https://maintenancephase.buzzsprout.com/1411126/7353850-the-biggest-loser)

View file

@ -0,0 +1,10 @@
---
title: Reply All
url: https://gimletmedia.com/shows/reply-all
image: https://cdn.wonderfulfrog.com/images/reply-all.jpeg
description: A podcast about the internet.
isCompleted: true
moreText: "Suggested episodes"
---
- [The Case of the Missing Hit](https://pca.st/episode/cc572c51-e2bd-41fe-a138-d4f8ecba3549)

View file

@ -1,6 +1,7 @@
--- ---
title: Running from COPS title: Running from COPS
rating: 5
image: https://cdn.wonderfulfrog.com/images/running-from-cops.webp image: https://cdn.wonderfulfrog.com/images/running-from-cops.webp
url: https://podcasts.apple.com/ca/podcast/headlong-running-from-cops/id1459118695 url: https://podcasts.apple.com/ca/podcast/headlong-running-from-cops/id1459118695
description: An investigation into the longest running reality TV show - COPS.
isCompleted: true
--- ---

View file

@ -1,6 +1,7 @@
--- ---
title: Surviving Y2K title: Surviving Y2K
rating: 4
image: https://cdn.wonderfulfrog.com/images/surviving-y2k.webp image: https://cdn.wonderfulfrog.com/images/surviving-y2k.webp
url: https://podcasts.apple.com/ca/podcast/headlong-surviving-y2k/id1464251414 url: https://podcasts.apple.com/ca/podcast/headlong-surviving-y2k/id1464251414
description: What it was like leading up to Y2K - the feared computer bug that ended up being nothing. Or was it...?
isCompleted: true
--- ---

View file

@ -1,12 +1,10 @@
--- ---
title: "You're Wrong About" title: "You're Wrong About"
url: https://yourewrongabout.com/ url: https://yourewrongabout.com/
rating: 3
image: https://cdn.wonderfulfrog.com/images/youre-wrong-about.jpeg image: https://cdn.wonderfulfrog.com/images/youre-wrong-about.jpeg
rss: https://feeds.buzzsprout.com/1112270.rss
description: There are things that happened, and you might be wrong about them!
moreText: "Suggested episodes"
--- ---
## Favourite episodes
I find I don't enjoy the podcast nearly as much since Michael Hobbes left the show. But the "classic era" YWA episodes tend to be great.
- [Disco Demolition Night](https://www.buzzsprout.com/1112270/4815227-disco-demolition-night) - [Disco Demolition Night](https://www.buzzsprout.com/1112270/4815227-disco-demolition-night)

View file

@ -1,16 +1,14 @@
--- ---
title: If Books Could Kill title: If Books Could Kill
url: https://www.ifbookspod.com/ url: https://www.ifbookspod.com/
rss: https://feeds.buzzsprout.com/2040953.rss
image: https://cdn.wonderfulfrog.com/images/if-books-could-kill.jpeg image: https://cdn.wonderfulfrog.com/images/if-books-could-kill.jpeg
description: A podcast about airport books.
moreText: "Suggested episodes"
--- ---
I will follow Michael Hobbes to the ends of the earth.
## Favourite episodes
- [The Art of the Deal](https://www.buzzsprout.com/2040953/14286395-the-art-of-the-deal) - [The Art of the Deal](https://www.buzzsprout.com/2040953/14286395-the-art-of-the-deal)
- [Malcolm Gladwell's "Outliers"](https://www.buzzsprout.com/2040953/11658428-malcolm-gladwell-s-outliers) - [Malcolm Gladwell's "Outliers"](https://www.buzzsprout.com/2040953/11658428-malcolm-gladwell-s-outliers)
- [Rich Dad Poor Dad](https://www.buzzsprout.com/2040953/12593204-rich-dad-poor-dad) - [Rich Dad Poor Dad](https://www.buzzsprout.com/2040953/12593204-rich-dad-poor-dad)
- [The Subtle Art of Not Giving a F\*ck](https://www.buzzsprout.com/2040953/14006961-the-subtle-art-of-not-giving-a-f-ck) - [The Subtle Art of Not Giving a F\*ck](https://www.buzzsprout.com/2040953/14006961-the-subtle-art-of-not-giving-a-f-ck)
How is it that I always fall for the light right-wingers? I still respect the book for the impact it had on me, but Mark Manson has completely lost the plot lately. His second book was not worth the money I paid for it.
- [The 48 Laws of Power](https://www.buzzsprout.com/2040953/13887364-the-48-laws-of-power) - [The 48 Laws of Power](https://www.buzzsprout.com/2040953/13887364-the-48-laws-of-power)

View file

@ -1,8 +1,8 @@
--- ---
title: 9/12 title: 9/12
rating: 4
image: https://cdn.wonderfulfrog.com/images/21dcd7ff8bee7ea7122dd755078befbef85978d7ee34af54840833a606d375da90a4f8a295842e8d2b58f4db5dfa6a69859a209e3c346f5f268546110b2b6d45.jpeg image: https://cdn.wonderfulfrog.com/images/21dcd7ff8bee7ea7122dd755078befbef85978d7ee34af54840833a606d375da90a4f8a295842e8d2b58f4db5dfa6a69859a209e3c346f5f268546110b2b6d45.jpeg
url: https://art19.com/shows/9-12 url: https://art19.com/shows/9-12
description: What happened the day after 9/11/2001?
rss: https://rss.art19.com/9-12
isCompleted: true
--- ---
What's it like the day _after_ 9/11? That's what this podcast explores. Dan Taberski proves he is a masterful host again and weaves a poignant narrative around "the next day".

View file

@ -1,8 +1,7 @@
--- ---
title: A Death in Cryptoland title: A Death in Cryptoland
rating: 5
image: https://cdn.wonderfulfrog.com/images/adeathincryptoland-podcast-template-lg.avif image: https://cdn.wonderfulfrog.com/images/adeathincryptoland-podcast-template-lg.avif
url: https://www.cbc.ca/listen/cbc-podcasts/904-a-death-in-cryptoland url: https://www.cbc.ca/listen/cbc-podcasts/904-a-death-in-cryptoland
description: What happens when the leader of a cryptocurrency exchange suddenly dies?
isCompleted: true
--- ---
Thoughts on cryptocurrency aside, this whole thing is _wild_. Every twist and turn continues to escalate - you'd be excused if you thought this was a piece of fiction.

View file

@ -1,8 +1,9 @@
--- ---
title: Boys Like Me title: Boys Like Me
rating: 5
image: https://cdn.wonderfulfrog.com/images/BoysLikeMe-podcast-template.avif image: https://cdn.wonderfulfrog.com/images/BoysLikeMe-podcast-template.avif
url: https://www.cbc.ca/listen/cbc-podcasts/1035-boys-like-me url: https://www.cbc.ca/listen/cbc-podcasts/1035-boys-like-me
isCompleted: true
description: A deep dive into the growing incel movement.
--- ---
For those wondering how the modern incel movement starting gaining so much traction - this podcast explores how the movement started and how it has got so far. For those wondering how the modern incel movement starting gaining so much traction - this podcast explores how the movement started and how it has got so far.

View file

@ -1,8 +1,9 @@
--- ---
title: Conversations With People Who Hate Me title: Conversations With People Who Hate Me
rating: 5
image: https://cdn.wonderfulfrog.com/images/Conversations-With-People-Who-Hate-Me-Square-Logo.png image: https://cdn.wonderfulfrog.com/images/Conversations-With-People-Who-Hate-Me-Square-Logo.png
url: https://www.dylanmarron.com/podcast url: https://www.dylanmarron.com/podcast
isCompleted: true
description: What would it be like to meet and talk with your haters?
--- ---
A uniquely humanizing experience when Dylan chats with his haters. It's surprising to me how many people backtrack their comments (or at least stand by the spirit and not the delivery). I do think anonymity has this boosting effect in people's willingness to be mean (putting it lightly). A uniquely humanizing experience when Dylan chats with his haters. It's surprising to me how many people backtrack their comments (or at least stand by the spirit and not the delivery). I do think anonymity has this boosting effect in people's willingness to be mean (putting it lightly).

View file

@ -1,8 +1,9 @@
--- ---
title: Project Unabom title: Project Unabom
rating: 5
image: https://cdn.wonderfulfrog.com/images/313x0w.webp image: https://cdn.wonderfulfrog.com/images/313x0w.webp
url: https://podcasts.apple.com/ca/podcast/project-unabom/id1627613321 url: https://podcasts.apple.com/ca/podcast/project-unabom/id1627613321
isCompleted: true
description: Who was the Unabomber?
--- ---
A fascinating podcast that kept me fully engaged all the way through. The presentation is top-notch. A fascinating podcast that kept me fully engaged all the way through. The presentation is top-notch.

View file

@ -1,8 +1,9 @@
--- ---
title: The Redemption of Jar Jar Binks title: The Redemption of Jar Jar Binks
rating: 5
image: https://cdn.wonderfulfrog.com/images/Jar_Jar_250x250.jpg image: https://cdn.wonderfulfrog.com/images/Jar_Jar_250x250.jpg
url: https://www.ted.com/podcasts/the-redemption-of-jar-jar-binks url: https://www.ted.com/podcasts/the-redemption-of-jar-jar-binks
isCompleted: true
description: Quite possibly the target of the first online hate campaign - what happened to Jar Jar Binks before and after the movies released?
--- ---
The interviews with Ahmed Best in particular are wonderful. I'm ashamed that I was once a part of the online hate brigade that targeted their ire toward Jar Jar. It's so easy to forget that there is a human behind the CGI - a human behind the character. The interviews with Ahmed Best in particular are wonderful. I'm ashamed that I was once a part of the online hate brigade that targeted their ire toward Jar Jar. It's so easy to forget that there is a human behind the CGI - a human behind the character.

View file

@ -1,8 +1,9 @@
--- ---
title: The Flamethrowers title: The Flamethrowers
rating: 5
image: https://cdn.wonderfulfrog.com/images/theflamethrowers-podcast-template.avif image: https://cdn.wonderfulfrog.com/images/theflamethrowers-podcast-template.avif
url: https://www.cbc.ca/listen/cbc-podcasts/1026-the-flamethrowers url: https://www.cbc.ca/listen/cbc-podcasts/1026-the-flamethrowers
isCompleted: true
description: All about the takeover of American AM radio by right-wing talking heads.
--- ---
I appreciated the host's occasional sense of humour, because the podcast uses real audio from some of the right-wind radio hosts and it can be... vitriolic, to put it nicely. I don't know what to do but immediately laugh after some of the hateful bile these men spew. I appreciated the host's occasional sense of humour, because the podcast uses real audio from some of the right-wind radio hosts and it can be... vitriolic, to put it nicely. I don't know what to do but immediately laugh after some of the hateful bile these men spew.

View file

@ -1,8 +1,9 @@
--- ---
title: The New Gurus title: The New Gurus
rating: 5
image: https://cdn.wonderfulfrog.com/images/the-new-gurus.webp image: https://cdn.wonderfulfrog.com/images/the-new-gurus.webp
url: https://podcasts.apple.com/ca/podcast/the-new-gurus/id1659385785 url: https://podcasts.apple.com/ca/podcast/the-new-gurus/id1659385785
isCompleted: true
description: Everyone is obsessed with finding a guru - and shysters take advantage of that. Is your guru unscrupulous?
--- ---
There is an obsession with finding a guru - a subject matter expert - and trying to learn from them. I should know - I spent a large part of my 20s following the advice of wealthy, privileged white men telling me how to live a fulfilling life. Just wake up a 5am, just meditate every day for 30 minutes, just just just... I hate the word "just" now and treat it like a hangnail. There is an obsession with finding a guru - a subject matter expert - and trying to learn from them. I should know - I spent a large part of my 20s following the advice of wealthy, privileged white men telling me how to live a fulfilling life. Just wake up a 5am, just meditate every day for 30 minutes, just just just... I hate the word "just" now and treat it like a hangnail.

View file

@ -0,0 +1,11 @@
---
title: Twenty Thousand Hertz
url: https://www.20k.org/
description: A podcast all about sound.
moreText: "Suggested episodes"
---
- [Zelda: A Beep to the Past](https://www.20k.org/episodes/zeldabeep)
- [Zelda: Tones of the Kingdom](https://www.20k.org/episodes/zeldatones)
- [I'm Lovin' It](https://www.20k.org/episodes/imlovinit)
- [Cat Translation Guide](https://www.20k.org/episodes/cat-translation-guide)

View file

@ -0,0 +1,3 @@
export default {
tags: "podcast",
};