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

一、配置categories

1. 新建页面categories:

1
hexo new page "categories"

执行命令后将新生成文件夹categories,并在该文件夹下生成index.md文件。

2. 编辑categories/index.md文件:

1
vi {path}/source/categories/index.md

编辑内容:

1
2
3
4
5
---
title: 分类
date: 2017-10-25 22:00:00
layout: "categories"
---

3. 编辑主题配置文件themes/pure/_config.yml:

1
vi {path}/themes/pure/_config.yml

menu中的categories的注释去掉:

1
2
3
4
5
6
7
8
9
10
# menu
menu:
Home: .
Archives: archives # 归档
Categories: categories # 分类
#Tags: tags # 标签
# Repository: repository # github repositories
#Books: books # 豆瓣书单
#Links: links # 友链
About: about # 关于

4. 编辑文章在Front-matter区域(即---分隔的区域)指定categories即可:

1
2
3
4
5
6
7
8
---
title: test
date: 2017-01-01 00:00:00
categories:
- 类别名称
tags:
- 标签
---

分类具有顺序性和层次性,而标签没有顺序和层次。

二、配置tags

1. 新建页面tags:

1
hexo new page "tags"

2. 编辑tags/index.md文件:

1
vi {path}/source/tags/index.md

编辑内容:

1
2
3
4
5
---
title: 标签
date: 2017-10-25 22:05:00
layout: "tags"
---

3. 编辑主题配置文件themes/pure/_config.yml:

1
vi {path}/themes/pure/_config.yml

menu中的tags的注释去掉:

1
2
3
4
5
6
7
8
9
10
# menu
menu:
Home: .
Archives: archives # 归档
Categories: categories # 分类
Tags: tags # 标签
# Repository: repository # github repositories
#Books: books # 豆瓣书单
#Links: links # 友链
About: about # 关于

文章指定tags的写法与categories一致,在Front-matter区域指定即可,写法可参考以上。

三、配置about

1. 新建页面about:

1
hexo new page "about"

2. 编辑about/index.md文件,内容可根据个人编写;

1
vi {path}/source/about/index.md

3. 编辑主题配置文件themes/pure/_config.yml:

1
vi {path}/themes/pure/_config.yml

menu中的about的注释去掉:

1
2
3
4
5
6
7
8
9
10
# menu
menu:
Home: .
Archives: archives # 归档
Categories: categories # 分类
Tags: tags # 标签
# Repository: repository # github repositories
#Books: books # 豆瓣书单
#Links: links # 友链
About: about # 关于