--- import EditionLayout from "../../layouts/EditionLayout.astro"; import EditionToc from "../../components/EditionToc.astro"; import LocalToc from "../../components/LocalToc.astro"; import { getCollection, render } from "astro:content"; export async function getStaticPaths() { const entries = await getCollection("archicrat-ia"); return entries.map((entry) => ({ params: { slug: String(entry.id).replace(/\.(md|mdx)$/i, "") }, props: { entry } })); } const { entry } = Astro.props; const { Content, headings } = await render(entry); ---

{entry.data.title}