blob: e740d36b2b46afdf79ef451328c047083d12c894 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
import Base from "@layouts/Base.astro";
const { title, description } = Astro.props.frontmatter || Astro.props;
---
<Base title={title} description={description}>
<div class="blogpost">
<slot />
</div>
</Base>
|