安装Hexo的categories生成插件
1
| $ npm install hexo-generator-category --save
|
1
| $ npm install hexo-generator-tag --save
|
生成categories page
1
| hexo new page categories
|
编辑categores page
打开sourcecategoriesindex.md
编辑成如下内容:
生成tags page
编辑tags page
打开sourcetagsindex.md
编辑成如下内容:
1 2 3 4 5 6
| --- title: tags date: 2015-12-07 14:34:18 type: "tags" comments: false #关闭评论widget ---
|
如何创建Hexo站点的Tags和Categories默认页面
原文:https://www.cnblogs.com/lijianming180/p/12026710.html