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

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