hexo心得

新建标签

hexo new page tags
确认站点配置文件里有tag_dir: tags
确认主题配置文件里有tags: /tags
编辑站点的source/tags/index.md,添加

1
2
3
4
title: tags
date: 2015-10-20 06:49:50
type: "tags"
comments: false

新建分类

hexo new page categories
确认站点配置文件里有category_dir: categories
确认主题配置文件里有categories: /categories
编辑站点的source/categories/index.md,添加

1
2
3
4
title: categories
date: 2015-10-20 06:49:50
type: "categories"
comments: false

更换主题

在站点配置文件”_config.yml”中 找到 theme 字段,并将其值更改为 对应主题名称
注意:更好主题后,需要执行

1
2
3
$ hexo clean
$ hexo g
$ hexo d -g