diff --git a/src/components/ArticleList.astro b/src/components/ArticleList.astro
deleted file mode 100644
index f67a2ae..0000000
--- a/src/components/ArticleList.astro
+++ /dev/null
@@ -1,19 +0,0 @@
----
-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 7ab4a69..c0c25bd 100644
--- a/src/components/Comments.astro
+++ b/src/components/Comments.astro
@@ -1,7 +1,6 @@
---
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
@@ -53,4 +52,3 @@ let { path='/' } = Astro.props;
{(method === 'fediverse' && !FediverseConfig.renderOnServer ) &&
@@ -72,7 +80,33 @@ const { title = pageTitle, author = siteConfig.defaultAuthor.name,description =
Powered by mercury
- {statisticsEnabled &&
Comments by Hatsu
- -