diff options
| author | seth <[email protected]> | 2024-04-10 07:32:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-04-10 07:51:09 -0400 |
| commit | 1db44ec4133547e9cc2f351b56b1d59fafbc5002 (patch) | |
| tree | ce76ab4ffbeda7614faa85e543c7daf16a353fe2 /src/layouts/Page.astro | |
| parent | 4d93e97d6aa9442d91ad34df1819f10dc8f0ed9c (diff) | |
factor out components
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> |
