We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8dc38 commit 5beb3d0Copy full SHA for 5beb3d0
1 file changed
src/pages/blog/[...slug].astro
@@ -1,6 +1,7 @@
1
---
2
import FormattedDate from '@/components/FormattedDate.astro';
3
import MarkDown from '@/components/Markdown.astro';
4
+import PostComments from '@/components/PostComments.astro';
5
import PageLayout from '@/layouts/PageLayout.astro';
6
import { getCollection, type CollectionEntry } from 'astro:content';
7
@@ -41,9 +42,11 @@ const { Content } = await post.render();
41
42
<MarkDown>
43
<Content />
44
</MarkDown>
- <footer>
45
+ <footer class="pb-10">
46
+ <p>Issue on GitHub</p>
47
<p>방문해 주셔서 감사합니다.</p>
48
<p>오탈자, 잘못된 정보에 대해 말씀해 주시면 감사히 받겠습니다.</p>
49
</footer>
50
+ <PostComments />
51
</article>
52
</PageLayout>
0 commit comments