diff --git a/_layouts/post.html b/_layouts/post.html
index c86b6ef..f2b57a1 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -78,7 +78,7 @@ layout: default
{{content}}
{% if page.tags %}
-tags: {{ page.tags | join: " - " }}
+tags: {% for tag in page.tags %}{{ tag }}{% unless forloop.last %} - {% endunless %}{% endfor %}
{% endif %}
diff --git a/index.html b/index.html
index d9adde4..7386022 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@ layout: default
title: 首页 - 我的文章
---
-
#{{ tag }}
+ {% endfor %}
+
+ {% endif %}
{% endfor %}
@@ -26,15 +33,15 @@ title: 首页 - 我的文章