diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index d7096ae..fade76a 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -18,7 +18,7 @@ import { Image } from "astro:assets"; export type Props = CollectionEntry<"posts">; -const { render, data } = Astro.props; +const { render, data, slug } = Astro.props; const { Content, remarkPluginFrontmatter } = await render(); --- @@ -45,6 +45,17 @@ const { Content, remarkPluginFrontmatter } = await render(); }
+ +

Comments

+