启用categories(分类)页面
- 创建categories page
1
| hexo new page "categories"
|
这会在./source创建一个categories的页目录
- 编辑./source/categories/index.md
1 2 3 4 5 6
| --- title: categories date: 2022-07-12 10:08:04 type: "categories" comments: true ---
|
其中的关键是type属性
- 修改主题配置(这里以next主题为例)
编辑./themes/next/_config.yml,把menu下的categories注释取消掉
1 2 3 4 5 6 7 8 9
| menu: home: / || fa fa-home #about: /about/ || fa fa-user #tags: /tags/ || fa fa-tags 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
|