diff --git a/config.toml b/config.toml
index 658384a0..884ffc3a 100644
--- a/config.toml
+++ b/config.toml
@@ -27,6 +27,8 @@ enableEmoji=true
[taxonomies]
blog = "blog"
image = "image"
+tag = "tags"
+category = "categories"
[params]
title = "J K 🇯🇵🏴"
diff --git a/themes/anatole/layouts/_default/list.html b/themes/anatole/layouts/_default/list.html
index 5bc1dd21..1150d502 100644
--- a/themes/anatole/layouts/_default/list.html
+++ b/themes/anatole/layouts/_default/list.html
@@ -1,6 +1,6 @@
{{ define "main" }}
-
{{if not (eq .Name "Blog")}}{{ .Name }}{{ end }}
+
{{if not (eq .Name "Blog")}}{{ .Name }}{{ end }}{{if eq .Name "Blog"}}All Blogs{{ end }}
{{ range .Data.Pages.GroupByDate "2006" }}
{{ .Key }}
diff --git a/themes/anatole/static/css/style.css b/themes/anatole/static/css/style.css
index 80ab763b..a01b0743 100644
--- a/themes/anatole/static/css/style.css
+++ b/themes/anatole/static/css/style.css
@@ -497,6 +497,16 @@ a:hover, a:active {
width: 80%;
}
+.list-title {
+ font-size: 30px;
+ font-weight:bold;
+ margin:30px;
+ color: #666666;
+}
+.list-title i{
+ font-size: 20px;
+ vertical-align:middle;
+}
.list-with-title {
font-size: 14px;
margin: 30px;