--- import Layout from './Layout.astro'; import { markdown } from '@astropub/md'; import { getCollection } from "astro:content"; import TableOfContents from '../components/TableOfContents.astro'; import '../styles/markdown.css'; const { frontmatter, headings, collection } = Astro.props; const items = await getCollection(collection) || []; const description = await markdown(frontmatter.description) ---
{items.length ? ( {collection.charAt(0).toUpperCase() + collection.slice(1)} ) : null}

{frontmatter.title}

{description}