分类
效果
配置
创建分类页面
在 Hexo 根目录执行以下命令:
hexo new page categories
然后,打开这个页面的 Markdown 文件(source/categories/index.md
),编辑 Front Matter,添加 template: categories
,即可。
source/categories/index.md
---
title: 分类(你自定义的标题)
date: 2023/5/14 11:45:14
template: categories
---
导航栏添加分类页面
在 Redefine 主题配置文件 _config.redefine.yml
的 navbar.links
导航栏配置项里面添加分类页面。
_config.redefine.yml
navbar:
links:
Categories: #取名随意
icon: fa-solid fa-folder #图标
path: /categories/ #链接
(放在二级菜单也可以)
最后更新于