11 lines
195 B
Text
11 lines
195 B
Text
---
|
|
import BaseLayout from './Layout.astro'
|
|
|
|
const { title } = Astro.props.frontmatter || Astro.props;
|
|
---
|
|
|
|
<BaseLayout title={title}>
|
|
<div class="markdown">
|
|
<slot/>
|
|
</div>
|
|
</BaseLayout>
|