We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f10d8f commit 8134f26Copy full SHA for 8134f26
src/pages/blog/[slug].astro
@@ -34,9 +34,14 @@ const { Content } = await render(entry);
34
if (!Content) {
35
throw new Error(`Content could not be rendered for blog`);
36
}
37
+
38
+const meta = {
39
+ title: "Stories",
40
+ description: validatedData.description
41
+};
42
---
43
-<BaseLayout meta={{ title: "Stories", description: validatedData.description }}>
44
+<BaseLayout meta={meta}>
45
<Back />
46
<article class="container__blog">
47
<header class="blog-post-header">
0 commit comments