Tags and Categories
Tags and categories features are enabled by default. But only part of them are available with zero-config. To make full use of them, follow the instructions:
Add two new pages
$ hexo new page 'tags'
$ hexo new page 'categories'
Replace the page content
You should edit two new files at source/tags/index.md
and source/categories/index.md
. Replace all of their content with the following:
source/tags/index.md
---
type: tags
---
source/categories/index.md
---
type: categories
---
Done! Now, /tags
and /categories
pages will be generated correctly.