diff options
Diffstat (limited to 'src/layouts/Page.astro')
| -rw-r--r-- | src/layouts/Page.astro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index 72512e2..e740d36 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.astro @@ -4,5 +4,7 @@ const { title, description } = Astro.props.frontmatter || Astro.props; --- <Base title={title} description={description}> - <slot /> + <div class="blogpost"> + <slot /> + </div> </Base> |
