创建命令

1
hexo new page "tags"

在站点根目录下的source文件夹中会新建一个名为tags的文件夹,文件夹中有一个index.md文件

修改index.md文件

1
2
3
4
title: 
date: 2021-07-29 15:03:57
comments: false
type: "tags"

title为该页面的标题

date为创建时间

comments: false代表该页面不能评论(没有评论模块)

type: “tags”代表对应文章的tags

指定文章的tags变量

Front-matter 是文件最上方以 --- 分隔的区域,用于指定个别文件的变量

文章的Front-matter添加tags变量,例如:(tags变量填标签名)

1
2
3
title: hexo next创建标签页
date: 2021-08-03 12:59:53
tags: hexo

修改主题的配置文件_config.yml

在memu中添加tags,加#号会注释掉不显示

1
2
3
4
5
6
7
8
9
10
menu:
主页: / || fa fa-home
#about: /about/ || fa fa-user
标签: /tags || fa fa-tags
#日期: /time/ || fa fa-calendar
#categories: /categories/ || fa fa-th
archives: /archives/ || fa fa-archive
#schedule: /schedule/ || fa fa-calendar
#sitemap: /sitemap.xml || fa fa-sitemap
#commonweal: /404/ || fa fa-heartbeat

结果截图