Wordpress is in
Some checks failed
ci / site (push) Has been cancelled

This commit is contained in:
2026-02-10 01:04:12 -05:00
parent d4aef77eca
commit c773affbc8
28 changed files with 1374 additions and 8 deletions

View File

@@ -79,6 +79,15 @@ const canonicalUrl = `${siteUrl}${canonicalPath.startsWith("/") ? canonicalPath
>
Podcast
</a>
<a
href="/blog"
data-umami-event="click"
data-umami-event-target_id="nav.blog"
data-umami-event-placement="nav"
data-umami-event-target_url="/blog"
>
Blog
</a>
<a
href="/about"
data-umami-event="click"

View File

@@ -0,0 +1,22 @@
---
import BaseLayout from "./BaseLayout.astro";
import BlogSecondaryNav from "../components/BlogSecondaryNav.astro";
import type { WordpressCategory } from "../lib/content/types";
type Props = {
title: string;
description: string;
canonicalPath: string;
ogImageUrl?: string;
categories: WordpressCategory[];
activeCategorySlug?: string;
};
const { categories, activeCategorySlug, ...rest } = Astro.props;
---
<BaseLayout {...rest}>
<BlogSecondaryNav categories={categories} activeCategorySlug={activeCategorySlug} />
<slot />
</BaseLayout>