hexo+butterfly里面,文章目录和标签无法显示
本地在网站根目录执行程序
hexo new page categories
hexo new page tags
之后可以打开网页但无内容
解决方案:
找到运行 hexo new page categories
之后本地文件Hexo\source 目录中会生成一个 categories 文件夹,文件夹内有一个 index.md 文件,打开此文件,将其中的 type
修改为 categories
即可。
如
title: 分类
date: 2023-10-11 20:26:34
type: "categories"
即可达到要求
title: tags
date: 2023-10-11 20:26:34
type: "tags"
同理可以设置标签
为文章设置目录可参考:
---
title: 这里是文章的标题
date: 这里是发表时间,如:2023-10-11 08:15:16
description: 这里填写摘要。
categories:
- 分类
- 子分类
tags:
- 标签1
- 标签2
---
这样就可以设置标签和分类并显示了。