Files
astro-website/site/src/layouts/BlogLayout.astro
Santhosh Janardhanan c773affbc8
Some checks failed
ci / site (push) Has been cancelled
Wordpress is in
2026-02-10 01:04:12 -05:00

23 lines
561 B
Plaintext

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