diff --git a/_comic/2023-09-19.md b/_comic/2023-09-19.md
new file mode 100644
index 0000000..f49c19d
--- /dev/null
+++ b/_comic/2023-09-19.md
@@ -0,0 +1,6 @@
+---
+image: comic/site_comic_1.png
+title: sappy sleep
+---
+
+bluby says hi :D
diff --git a/_comic/index.html b/_comic/index.html
new file mode 100644
index 0000000..b9013e9
--- /dev/null
+++ b/_comic/index.html
@@ -0,0 +1,12 @@
+---
+name: comic index
+layuot: default
+---
+
+ {% for post in site.comic %}
+ {% if post.url == page.url %}
+ {% continue %}
+ {% endif %}
+ {{ post.title | downcase }}
+ {% endfor %}
+
diff --git a/_config.yml b/_config.yml
index bfe4ce7..338dfe1 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,6 +1,7 @@
collections:
- pages:
+ comic:
output: true
+ layout: "comic"
defaults:
- scope:
@@ -8,3 +9,8 @@ defaults:
values:
layout: "default"
neko: "true"
+ - scope:
+ path: ""
+ type: "comic"
+ values:
+ layout: "comic"
diff --git a/_layouts/comic.html b/_layouts/comic.html
new file mode 100644
index 0000000..60058cb
--- /dev/null
+++ b/_layouts/comic.html
@@ -0,0 +1,8 @@
+---
+layout: default
+---
+{{ page.name | date: "%b %d" }}
+{{ page.title }}
+
+
+{{content}}
diff --git a/_pages/1.html b/_pages/1.html
deleted file mode 100644
index 1fce162..0000000
--- a/_pages/1.html
+++ /dev/null
@@ -1,3 +0,0 @@
----
----
-test
diff --git a/assets/images/comic/site_comic_1.png b/assets/images/comic/site_comic_1.png
new file mode 100644
index 0000000..4744a9d
Binary files /dev/null and b/assets/images/comic/site_comic_1.png differ