解决新版hexo没有目录和标签页的问题

新版hexo安装之后没有标签页,解决方法大致三步:

  1. 需要自行在 /source/ 文件夹下添加一个 categoriestags 文件夹,然后往文件夹中分别写入一个 index.md 文件。

  2. 然后在对应的 index.md 中写入 YAML 信息。

  3. 在对应的主题配置文件,例如 _config.yml 中填写好配置。

新建目录和页面

可以通过两句语句来运行:

1
2
hexo new page categories
hexo new page tags

添加type属性

编辑 index.md,修改信息如下,日期随意:

1
2
3
4
5
---
title: 目录
type: categories
date: 2020-08-06 23:32:00
---

注意上面写的一个属性 type,千万不能写错。

1
2
3
4
5
---
title: 标签
type: tags
date: 2020-08-06 23:32:00
---

设置配置文件

如下图所示修改即可:

image-20210806235851123

最后重新清空、运行和预览即可。

1
2
3
hexo clean
hexo generate
hexo site