如何为你的树莓派安装一个好看的主题—Butterfly
本文是前文从零开始 Hexo博客搭建的后续。
文章有参考主题作者的博客
安装环境(一定要装!!!)
首先,cd至博客根目录
注意,需要首先安装好Node.js和Git!
1 | cd blog # 此处的blog更改为你所设置的名称 |
然后,安装cheerio和渲染器
1 | npm install cheerio –save |
安装主题
可以选择标准版,git clone下来:
1 | git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly |
也可以选择dev版
1 | git clone -b dev https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly |
最后,更改博客根目录_config.yml
1 | theme: Butterfly |
当然,也可以自行选择平滑升级(我自己没用),执行下面代码后可以通过git pull升级,但是之后配置文件就需要改butterfly.yml了,看个人喜好自愿执行下面步骤
1 | cp source/themes/Butterfly/_config.yml source/_data/butterfly.yml |
恭喜,安装完成!
进行页面设置
1 | hexo new page tags # 标签页 |
然后编辑界面文件
标签页:
1 | nano source/tags/index.md |
1 | title: 标签 |
分类页:
1 | nano source/categories/index.md |
1 | title: 分类 |
友链页:
1 | nano source/link/index.md |
1 | title: 友情链接 |
配置友链
1 | nano source/_data/link.yml |
1 | class: |
到这里差不多就完成基本配置了,更多配置信息可以前往作者的博客或者hexo-theme-melody获取。