Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename podcast #91

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/components/Podcast.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,14 @@ function slugify(str) {
<div class="mt-2">
<div class="mt-2">
<!-- TODO: Is there a less brittle way? -->
<!-- TODO: Find a way to show shows before renaming -->
{
podcast.link === 'https://chinchillasqueaks.substack.com/podcast' ? (
podcast.link === 'https://chrischinchilla.com/podcast' ? (
<a
href="/podcast/chinchillasqueaks"
href="/podcast/techlounge"
class="bg-gray-100 dark:bg-slate-700 inline-block mr-2 mb-2 py-0.5 px-2 font-medium"
>
Chinchilla Squeaks
Tech Lounge
</a>
) : (
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ export async function getStaticPaths({ paginate }) {

const { page } = Astro.props;
const meta = {
title: 'Chinchilla Squeaks',
description:
'My pre-eminent podcast, Chinchilla Squeaks, has run for nearly eight years and taken me all over the globe. It runs every other week as an interview with a tech or creative luminary and every other week featuring interesting links and news.',
title: 'Tech Lounge',
description: 'My new, relauched podcast that invites you for a cosy chat about technology. Every two weeks I interview luminaries and thought leaders and every two weeks Cate Lawrence and I dig deep into two topics.',
// 'My pre-eminent podcast, Chinchilla Squeaks, has run for nearly eight years and taken me all over the globe. It runs every other week as an interview with a tech or creative luminary and every other week featuring interesting links and news.',
// canonical: post.canonical || url,
image: showImage,
// noindex: BLOG?.post?.noindex,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ const { episode, episodeData } = Astro.props;

const meta = {
title: 'Podcasts',
description:
'My pre-eminent podcast, Chinchilla Squeaks, has run for nearly eight years and taken me all over the globe. I have dabbled in other shows. They will be listed here again in the near future.',
description: 'My new, relauched podcast that invites you for a cosy chat about technology. Every two weeks I interview luminaries and thought leaders and every two weeks Cate Lawrence and I dig deep into two topics.',
// 'My pre-eminent podcast, Chinchilla Squeaks, has run for nearly eight years and taken me all over the globe. I have dabbled in other shows. They will be listed here again in the near future.',
// canonical: post.canonical || url,
// image: await findImage(post.image),
// noindex: BLOG?.post?.noindex,
Expand Down
Loading