Hexo-美化与配置指南
Hexo-美化与配置指南
Neil
[up主专用,视频内嵌代码贴在这]
Hexo主题安装配置
安知鱼主题
安装
[博客根目录]
/ 右键运行终端1
2
3
4拉取主题
git clone -b main https://github.com/anzhiyu-c/hexo-theme-anzhiyu.git themes/anzhiyu
安装插件
npm install hexo-renderer-pug hexo-renderer-stylus --save修改 hexo 配置文件
_config.yml
1
theme: anzhiyu
主题配置文件
Windows 手动将
/themes/anzhiyu/_config.yml
复制到根目录下并重命名为_config.anzhiyu.yml
即可。以后如果修改任何主题配置,都只需修改_config.anzhiyu.yml
的配置即可。linux 执行
1
cp -rf ./themes/anzhiyu/_config.yml ./_config.anzhiyu.yml
删除
[博客根目录]\themes\anzhiyu\
.git
文件
注意:
- 只要存在于
_config.anzhiyu.yml
的配置都是高优先级,修改原_config.yml
是无效的。- 每次更新主题可能存在配置变更,请注意更新说明,可能需要手动对
_config.anzhiyu.yml
同步修改。- 想查看覆盖配置有没有生效,可以通过
hexo g --debug
查看命令行输出。- 如果想将某些配置覆盖为空,注意不要把主键删掉,不然是无法覆盖的
生成标签页和分类页
[博客根目录]
/ 右键运行终端1
2hexo new page tags
hexo new page categories找到
source/tags/index.md
和source/categories/index.md
文件,修改添加type: "tags"
和type: "categories"
1
2
3
4
5
6
7---
title: 标签
date: 2018-08-08 08:08:08
type: "tags"
comments: false
top_img: false
---1
2
3
4
5
6
7---
title: 分类
date: 2018-08-08 08:08:08
aside: false
top_img: false
type: "categories"
---修改配置文件
_config.anzhiyu.yml
去掉注释1
2
3
4
5menu:
文章:
隧道: /archives/ || anzhiyu-icon-box-archive
分类: /categories/ || anzhiyu-icon-shapes
标签: /tags/ || anzhiyu-icon-tags
配置文章模版
/scaffolds
目录下有几个模版文件,其中
post.md:新建博文模版
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
title: {{ title }} #【必需】页面标题
date: {{ date }} #【必需】页面创建日期
updated: #【可选】页面更新日期
tags: #【可选】文章标签
categories: #【可选】文章分类
keywords: #【可选】文章关键字
description: #【可选】文章描述
top: # 1 置顶
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)
swiper_index: 10 #【可选】首页轮播图配置 index 索引,数字越小越靠前
top_group_index: 10 #【可选】首页右侧卡片组配置, 数字越小越靠前
ai: #【可选】文章ai摘要
background: "#fff" #【可选】文章主色,必须是16进制颜色且有6位,不可缩减,例如#ffffff 不可写成#fff
<div class="video-container">
[up主专用,视频内嵌代码贴在这]
</div>
<style>
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 * 100%) */
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>page.md:新建标签页模版
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
title: {{ title }} #【必需】页面标题
date: {{ 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 的配置)
top_single_background: #【可选】部分页面的顶部模块背景图片
文章置顶
安装插件
1
npm install hexo-generator-topindex --save
使用方法
给需要置顶的文章加入top参数,多个置顶文章,top后的参数越大,越靠前。
1
2
3
4
5
6
7
8
9---
title: Hello World
date: 2018-08-08 08:08:08
top: 1
categories:
-
tags:
-
---
开启本地搜索
安装插件
1
npm install hexo-generator-search --save
_config.anzhiyu.yml
1
2
3
4local_search:
enable: true
preload: true
CDN:参数 解释 enable 是否开启本地搜索 preload 预加载,开启后,进入网页后会自动加载搜索文件。关闭时,只有点击搜索按钮后,才会加载搜索文件 CDN 搜索文件的 CDN 地址(默认使用的本地链接)