summaryrefslogtreecommitdiff
path: root/src/layouts/Blogpost.astro
blob: a52a7d5ee38d4441c6b05ef1868d8ea9c470b25d (plain)
1
2
3
4
5
6
7
8
---
import Page from "@layouts/Page.astro";
const { title, description } = Astro.props.frontmatter;
---

<Page title={title} description={description}>
	<slot />
</Page>