hexo nexT主题新增分类页和标签页

发布 : 2017-03-30 分类 : Blog 浏览 :

新增菜单

编辑主题配置文件

hexo/themes/next/_config.yml
1
2
3
4
5
6
7
8
menu:
home: /
categories: /categories
#about: /about
archives: /archives
tags: /tags
#sitemap: /sitemap.xml
#commonweal: /404.html

新建页面

在终端执行

1
2
hexo new page tags
hexo new page categories

编辑分类页标签页

在分类页和标签页的md文件头部加上types指明页面的类型就行了

1
2
3
4
5
---
title: categories
date: 2017-03-30 19:32:41
type: "categories"
---
hexo/source/tags/index.md
1
2
3
4
5
---
title: tags
date: 2016-07-28 17:00:34
type: "tags"
---
本文作者 : 小凡
原文链接 : https://16bh.github.io/2017/03/30/hexo-nexT-theme-add-categories-and-tags/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
留下足迹