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 2220b95 commit 6390049Copy full SHA for 6390049
src/pages/posts/[slug].astro
@@ -21,7 +21,7 @@ type Props = { post: CollectionEntry<"blog"> };
21
const { post } = Astro.props;
22
const { Content } = await post.render();
23
---
24
-<BaseLayout description={CONFIG.meta.description}>
+<BaseLayout title={post.data.title} description={CONFIG.meta.description}>
25
<div class="w-full pb-20">
26
<div class="flex flex-row space-x-4 mb-6 text-sm text-secondaryDarker animate-slide-from-down-and-fade-1">
27
<a
0 commit comments