点击categories或者tags 出现 Cannot GET /categories , Cannot GET /tags

出现这个的原因是,hexo默认是没有生成categories和tags的资源目录的

1. 初始化categories和tags

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

执行完命令后,source目录下会生成对应的目录

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

/tags/index.md

1
2
3
4
5
6
7
---
title: 标签
date: 2017-05-07 08:06:06
comments: false
type: "tags"
layout: "tags" # 注意这里
---

/categories/index.md

1
2
3
4
5
6
7
---
title: 分类
date: 2017-05-07 08:07:30
comments: false
type: "categories"
layout: "categories" # 注意这里
---

这样你在文章中进行分类和打上标签的文章,在分类页和标签页中就可以渲染出来了.