--- import { getCollection } from 'astro:content' import ArticleLayout from '../../layouts/ArticleLayout.astro' export async function getStaticPaths() { const blogEntries = await getCollection('guides') return blogEntries.map(entry => ({ params: { slug: entry.slug }, props: { entry }, })) } const { entry } = Astro.props const { Content } = await entry.render() ---

{entry.data.title}

{entry.data.series &&

{entry.data.series}

}