diff --git a/src/components/ArticleList.astro b/src/components/ArticleList.astro
new file mode 100644
index 0000000..f67a2ae
--- /dev/null
+++ b/src/components/ArticleList.astro
@@ -0,0 +1,19 @@
+---
+const { posts, displayDate = false, placeholder = false } = Astro.props;
+---
+
+ {posts.map((post) => (
+
+ {displayDate && {new Date(post.data.pubDate).toISOString().split('T')[0]}}
+ {post.data.title}
+
+ ))}
+
+ {placeholder && posts.length === 0 && (
+ <>
+
+ No posts here yet
+
+ >
+ )}
+
\ No newline at end of file
diff --git a/src/components/Comments.astro b/src/components/Comments.astro
index c0c25bd..7ab4a69 100644
--- a/src/components/Comments.astro
+++ b/src/components/Comments.astro
@@ -1,6 +1,7 @@
---
import {siteConfig} from "../config";
import FediverseComments from "./helper/comments/Fediverse.astro";
+import HatsuComments from "./helper/comments/Hatsu.astro";
const method = siteConfig.comments.type
const ArtalkConfig = siteConfig.comments.artalk
@@ -52,3 +53,4 @@ let { path='/' } = Astro.props;
{(method === 'fediverse' && !FediverseConfig.renderOnServer ) &&
@@ -80,33 +72,7 @@ const { title = pageTitle, author = siteConfig.defaultAuthor.name,description =
Powered by mercury
- {statisticsEnabled && statisticsType === 'umami' && (
-
- )}
- {statisticsEnabled && statisticsType === 'goatcounter' && (
- <>
- {noscript ? (
-
Comments by Hatsu
+ +