aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-09-06 11:36:02 +0300
committerValentin Popov <valentin@popov.link>2024-09-06 11:36:02 +0300
commit2a86fd34f6d99e43eb586f5e656a6c9cb19657a7 (patch)
treeaa2acbb15e39e43bfce9e35cbe71859db018b587 /src/pages
parent9829c0e5facb156cac853390ab4877637bfa410c (diff)
downloadpopov.link-2a86fd34f6d99e43eb586f5e656a6c9cb19657a7.tar.xz
popov.link-2a86fd34f6d99e43eb586f5e656a6c9cb19657a7.zip
Added comments
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/blog/[...slug].astro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index bbf3f98..2593921 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -1,5 +1,6 @@
---
import { type CollectionEntry, getCollection } from "astro:content";
+import Comments from "../../components/Comments.astro";
import Layout from "../../layouts/PageLayout.astro";
export async function getStaticPaths() {
@@ -34,4 +35,5 @@ const { Content, remarkPluginFrontmatter } = await post.render();
</p>
</div>
<Content />
+ <Comments />
</Layout>