Skip to content

Commit 5beb3d0

Browse files
committed
feat: blog slug 페이지 giscus PostComments 컴포넌트 적용
1 parent 7a8dc38 commit 5beb3d0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/pages/blog/[...slug].astro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
import FormattedDate from '@/components/FormattedDate.astro';
33
import MarkDown from '@/components/Markdown.astro';
4+
import PostComments from '@/components/PostComments.astro';
45
import PageLayout from '@/layouts/PageLayout.astro';
56
import { getCollection, type CollectionEntry } from 'astro:content';
67
@@ -41,9 +42,11 @@ const { Content } = await post.render();
4142
<MarkDown>
4243
<Content />
4344
</MarkDown>
44-
<footer>
45+
<footer class="pb-10">
46+
<p>Issue on GitHub</p>
4547
<p>방문해 주셔서 감사합니다.</p>
4648
<p>오탈자, 잘못된 정보에 대해 말씀해 주시면 감사히 받겠습니다.</p>
4749
</footer>
50+
<PostComments />
4851
</article>
4952
</PageLayout>

0 commit comments

Comments
 (0)