diff options
| author | Andrew Lee <[email protected]> | 2024-12-31 22:11:04 -0500 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2024-12-31 22:11:04 -0500 |
| commit | 6736b26552b2fdc566fd5e154cd07f3ce909fddc (patch) | |
| tree | 4964fcec3ddc1d439d3ace24e935dbb64e5ed313 /src/layouts/Page.astro | |
| parent | 944b6dbb2d43a93f905788a05fcde5600270184d (diff) | |
| download | shiftos-archive-website-6736b26552b2fdc566fd5e154cd07f3ce909fddc.tar.gz shiftos-archive-website-6736b26552b2fdc566fd5e154cd07f3ce909fddc.tar.bz2 shiftos-archive-website-6736b26552b2fdc566fd5e154cd07f3ce909fddc.zip | |
Website now uses astro rather than plain html; Added a few more releases
Diffstat (limited to 'src/layouts/Page.astro')
| -rw-r--r-- | src/layouts/Page.astro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro new file mode 100644 index 0000000..2cafa0c --- /dev/null +++ b/src/layouts/Page.astro @@ -0,0 +1,10 @@ +--- +import Layout from '../layouts/Layout.astro'; +const { title, description } = Astro.props; +--- + +<Layout title={title} description={description}> + <div class="container"> + <slot /> + </div> +</Layout>
\ No newline at end of file |
