diff --git a/layouts/index.html b/layouts/index.html
index 0ac21a2..7602d17 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,12 +1,26 @@
{{ define "main" }}
{{ .Content }}
-
Posts
-
- {{ range first 100 ( where .Site.RegularPages "Section" "posts" ) }}
- -
-
- {{ .Title | markdownify }}
-
- {{ end }}
-
+ Tags
+ {{ range .Site.Taxonomies.tags }}
+
+ {{ .Page.Title }} ({{ len . }})
+
+ {{ end }}
+ All Pages
+
{{ end }}
diff --git a/static/css/styles.css b/static/css/styles.css
index f1ea81d..9eb54dd 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -629,3 +629,8 @@ body {
border-width: 1px;
border-style: solid;
}
+
+summary > h3 {
+ color: purple;
+ display: inline;
+}