hexo categories和tags页面不显示解决办法

摘自LuisChen的博客

1.默认是没有 categories 和 tags 的需要

1
2
hexo new page "tags"
hexo new page "categories"

2.编辑 /tags/index.md 以及/categories/index.md

1
2
type: "tags"
layout: "tags"

1
2
type: "categories"
layout: "categories"