Initial commit - but way too late.
Some checks failed
ci / site (push) Has been cancelled

This commit is contained in:
2026-02-10 00:22:18 -05:00
commit af112a713c
173 changed files with 27667 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import ContentCard from "../components/ContentCard.astro";
import { readContentCache } from "../lib/content/cache";
import { podcastEpisodes } from "../lib/content/selectors";
const cache = await readContentCache();
const episodes = podcastEpisodes(cache).sort(
(a, b) => Date.parse(b.publishedAt) - Date.parse(a.publishedAt),
);
---
<BaseLayout
title="Podcast | Irregular Mind"
description="Episodes from the Irregular Mind podcast."
canonicalPath="/podcast"
>
<section class="section">
<div class="section-header">
<h2>Irregular Mind</h2>
<span class="muted">{episodes.length} episodes</span>
</div>
{
episodes.length > 0 ? (
<div class="grid">
{episodes.map((item) => (
<ContentCard item={item} placement="podcast.list" />
))}
</div>
) : (
<div class="empty">
No episodes yet. Set <code>PODCAST_RSS_URL</code> and run{" "}
<code>npm run fetch-content</code>.
</div>
)
}
</section>
</BaseLayout>