基础用法
- 更改主题配置只需要在config.butterfly.yml里配置
- Hexo会自动合并config.yml和config.butterfly.yml的配置,如果存在同名配置会优先使用config.butterfly.yml的配置,优先级更高
1.Front-matter
Front-matter
是 markdown 文件最上方以---
分隔的区域,用于指定个别档案的变数。
- Page Front-matter 用于页面配置
- Post Front-matter 用于文章页配置
Page Front-matter:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| --- title:【必需】页面标题 date:【必需】页面创建日期 type:【必需】标签、分类和友情链接三个页面需要配置 updated:【可选】页面更新日期 comments:【可选】显示页面评论模块(默认 true) description:【可选】页面描述 keywords:【可选】页面关键字 top_img:【可选】页面顶部图片 mathjax:【可选】显示mathjax(当设置mathjax的per_page: false时,才需要配置,默认 false) katex:【可选】显示katex(当设置katex的per_page: false时,才需要配置,默认 false) aside:【可选】显示侧边栏 (默认 true) aplayer:【可选】在需要的页面加载aplayer的js和css,请参考文章下面的音乐 配置 highlight_shrink:【可选】配置代码框是否展开(true/false)(默认为设置中highlight_shrink的配置) ---
|
Post Front-matter:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| --- title:【必需】文章标题 date:【必需】文章创建日期 updated:【可选】文章更新日期 tags:【可选】文章标签 categories:【可选】文章分类 keywords:【可选】文章关键字 description:【可选】文章描述 top_img:【可选】文章顶部图片 comments:【可选】显示文章评论模块(默认 true) cover:【可选】文章缩略图(如果没有设置top_img,文章页顶部将显示缩略图,可设为false/图片地址/留空) toc:【可选】显示文章TOC(默认为设置中toc的enable配置) toc_number: 【可选】显示toc_number(默认为设置中toc的number配置) toc_style_simple:【可选】显示 toc 简洁模式 copyright:【可选】显示文章版权模块(默认为设置中post_copyright的enable配置) copyright_author:【可选】文章版权模块的文章作者 copyright_author_href:【可选】文章版权模块的文章作者链接 copyright_url:【可选】文章版权模块的文章连结链接 copyright_info:【可选】文章版权模块的版权声明文字 mathjax:【可选】显示mathjax(当设置mathjax的per_page: false时,才需要配置,默认 false) katex: 【可选】显示katex(当设置katex的per_page: false时,才需要配置,默认 false) aplayer:【可选】在需要的页面加载aplayer的js和css,请参考文章下面的音乐 配置 highlight_shrink: 【可选】配置代码框是否展开(true/false)(默认为设置中highlight_shrink的配置) aside:【可选】显示侧边栏 (默认 true) ---
|
2.标签页
1.前往你的Hexo博客根目录,打开Git Bash执行如下命令:
2.在[BlogRoot]\source\
会生成一个含有index.md
文件的tags
文件夹。
3.修改[BlogRoot]\source\tags\index.md
,添加type: "tags"
。
1 2 3 4 5
| --- title: tags date: 2022-10-28 12:00:00 type: "tags" ---
|
3.友情链接
1.前往你的Hexo博客根目录,打开cmd命令窗口执行如下命令:
2.在[BlogRoot]\source\
会生成一个含有index.md
文件的link
文件夹
3.修改[BlogRoot]\source\link\index.md
,添加type: "link"
1 2 3 4 5
| --- title: link date: 2022-10-28 12:00:00 type: "link" ---
|
4.前往[BlogRoot]\source\_data
创建一个link.yml
文件(如果沒有 _data
文件夹,请自行创建),并写入如下信息(根据你的需要写):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| - class_name: 1.技术支持 class_desc: 本网站的搭建由以下开源作者提供技术支持 link_list: - name: Hexo link: https://hexo.io/zh-cn/ avatar: https://d33wubrfki0l68.cloudfront.net/6657ba50e702d84afb32fe846bed54fba1a77add/827ae/logo.svg descr: 快速、简单且强大的网志框架 siteshot: https://source.fomal.cc/siteshot/hexo.io.jpg - class_name: 2.友情链接 class_desc: 一些好朋友~~ link_list: - name: Fomalhaut🥝 link: https://fomal.cc/ avatar: /assets/head.jpg descr: Future is now 🍭🍭🍭 siteshot: https://source.fomal.cc/siteshot/www.fomal.cn.jpg
|
- class_name和class_desc支持 html 格式,如不需要,也可以留空。
4.图库
图库页面只是普通的页面,你只需要hexo new page xxx
创建你的页面就行。
然后使用外挂标签 galleryGroup
,具体用法请查看对应的内容。
1 2 3 4 5 6
| <div class="gallery-group-main">
{% galleryGroup '封面专区' '本站用作文章封面的图片,不保证分辨率' '/box/Gallery/photo' https://source.fomal.cc/img/default_cover_61.webp %}
{% galleryGroup '背景专区' '收藏的一些的背景与壁纸,分辨率很高' '/box/Gallery/wallpaper' https://source.fomal.cc/img/dm11.webp %} </div>
|
5.子页面
子页面也是普通的页面,你只需要hexo new page xxx
创建你的页面就行。
然后使用标签外挂 gallery
,具体用法请查看对应的内容。
6.404页面
主題內置了一个简单的404页面,可在设置中开放。
如需本地预览,请访问 http://localhost:4000/404.html
1 2 3 4 5
| error_404: enable: true subtitle: "页面沒有找到" background:
|