Hexo博客主题配置——Butterfly
o( ̄▽ ̄)o!
继续优化我们的 hexo 博客,使用 Butterfly 主题。
Butterfly 仓库:https://github.com/jerryc127/hexo-theme-butterfly
Butterfly 文档:https://butterfly.js.org/
快速开始
主题安装
使用 Git 安装:
1 | git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly |
使用 npm 安装:
1 | npm install hexo-theme-butterfly |
上述两种方法都需要在 Hexo 项目的根目录下使用。
npm 方法只支持 Hexo 5.0.0 以上版本,且不会在 themes 里生成主题文件夹,而是在 node_modules 里生成。
主题使用
修改 Hexo 项目根目录下的 _config.yml,把主题改为 butterfly
1 | theme: butterfly |
安装 pug 以及 stylus 的渲染器插件
1 | npm install hexo-renderer-pug hexo-renderer-stylus --save |
在 hexo 的根目录创建一个文件 _config.butterfly.yml,并把主题目录的 _config.yml 内容复制到 _config.butterfly.yml 去。
Hexo会自动合併主题中的 _config.yml 和 _config.butterfly.yml 里的配置,如果存在同名配置,会使用 _config.butterfly.yml 的配置,其优先度较高。
页面设置
标签页
首先前往 Hexo 项目的根目录,打开终端输入 hexo new page tags
,会在 ./source 目录下生成 tags 目录。
然后找到 ./source/tags/index.md 这个文件,修改内容如下:
1 | --- |
注意必须添加 type: "tags"
标签对,且双引号中的内容不要修改。
分类页
前往 Hexo 项目的根目录,打开终端输入 hexo new page categories
,会在 ./source 目录下生成 categories 目录。
然后找到 ./source/categories/index.md 这个文件,修改内容如下:
1 | --- |
注意必须添加 type: "categories"
标签对,且双引号中的内容不要修改。
友情链接
前往 Hexo 项目的根目录,打开终端输入 hexo new page link
,会在 ./source 目录下生成 link 目录。
然后找到 ./source/link/index.md 这个文件,修改内容如下:
1 | --- |
注意必须添加 type: "link"
标签对,且双引号中的内容不要修改。
最后添加友情链接,在Hexo根目录中的 ./source/_data(如果没有 _data 文件夹,请自行创建),创建一个文件 link.yml,添加如下内容:
1 | - class_name: 友情链接 |
404页面
Butterfly 主题内置了一个简单的 404 页面,可在设置中开启,在 _config.butterfly.yml 中修改如下:
1 | # A simple 404 page |
主题配置
Butterfly 主题配置参照官方文档:https://butterfly.js.org/posts/4aa8abbe/