0%

hexo不生成categories和tags的index页

问题

使用第三方主题的时候,有时候会遇到hexo不能自动生成/categories/index.html/tags/index.html页面的问题,导致进入分类或标签主页无法正常显示该页面,如下图

解决

通过终端执行

1
2
$ hexo new page categories
$ hexo new page tags

会在source文件夹创建两个文件夹categories, tags,并分别创建index.md文件

1
2
3
4
5
├── source
├── categories
| ├── index.md
└── tags
└── index.md

编辑index.md文件

source/categories/index.md

1
2
3
4
5
---
title: 分类
type: categories
date: 2016-04-28 17:32:38
---

source/tags/index.md

1
2
3
4
5
---
title: 标签
type: tags
date: 2016-04-28 17:32:38
---

从新生成就有了

1
2
$ hexo generate
$ hexo server