diff options
| author | Andrew Lee <[email protected]> | 2024-12-31 23:13:24 -0500 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2024-12-31 23:13:24 -0500 |
| commit | b8365b66d79f641048361eb153b3bbbb22984370 (patch) | |
| tree | ef27b410035fa7c24741d8132179ffb9ddeaa35a /src/layouts | |
| parent | e179d5bdd30ec7d39771c9a54689f32d28b49f42 (diff) | |
| download | shiftos-archive-website-b8365b66d79f641048361eb153b3bbbb22984370.tar.gz shiftos-archive-website-b8365b66d79f641048361eb153b3bbbb22984370.tar.bz2 shiftos-archive-website-b8365b66d79f641048361eb153b3bbbb22984370.zip | |
Now this should actually fix it
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Page.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index 2cafa0c..c9066be 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.astro @@ -1,9 +1,9 @@ --- import Layout from '../layouts/Layout.astro'; -const { title, description } = Astro.props; +const { frontmatter } = Astro.props; --- -<Layout title={title} description={description}> +<Layout title={frontmatter.title} description={frontmatter.description}> <div class="container"> <slot /> </div> |
