aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2024-12-31 23:13:24 -0500
committerAndrew Lee <[email protected]>2024-12-31 23:13:24 -0500
commitb8365b66d79f641048361eb153b3bbbb22984370 (patch)
treeef27b410035fa7c24741d8132179ffb9ddeaa35a /src
parente179d5bdd30ec7d39771c9a54689f32d28b49f42 (diff)
downloadshiftos-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')
-rw-r--r--src/layouts/Page.astro4
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>