Hexo标签页生成

Hexo标签页生成的详细教程,附官方说明文档

代码:

1
2
3
4
5
tags: 
- 前端
- hexo
categories:
- 前端

在博客根目录输入

1
hexo new page tags

打开 tags/index.md ,并改成:

1
2
3
4
title: 标签
date: 日期
type: "tags"
comments: false

分类同理

1
hexo new page categories

打开category/index.md,改为:

1
2
3
4
title: 分类
date: 日期
type: "categories"
comments: false

附上文档Front-matter