diff --git a/content/posts/_index.md b/content/posts/_index.md
index db5627a..02eb363 100644
--- a/content/posts/_index.md
+++ b/content/posts/_index.md
@@ -1,5 +1,4 @@
+++
aliases = ["all_posts", "articles"]
title = "Index of Posts"
-tags = ["index"]
+++
diff --git a/layouts/partials/archive.html b/layouts/partials/archive.html
index c5e3690..3cbf057 100644
--- a/layouts/partials/archive.html
+++ b/layouts/partials/archive.html
@@ -11,6 +11,7 @@
{{ .Content }}
+{{- if ne .Title "Tags"}}
{{- range (.Paginate $pages).Pages }}
{{- $postDate := .Date.Format "2006-01-02" }}
{{- $updateDate := .Lastmod.Format "2006-01-02" }}
@@ -28,4 +29,9 @@
{{ end }}
-{{- template "_internal/pagination.html" . }}
\ No newline at end of file
+{{- template "_internal/pagination.html" . }}
+{{- else }}
+{{- range .Pages.ByTitle }}
+ [{{ .Title | markdownify }}]
+{{- end }}
+{{- end }}
\ No newline at end of file