原文链接:hexo+next主题博客-next主题配置
上文链接:hexo+next主题博客-hexo部署
导言
next主题是适配hexo的一个博客主题,由于hexo本身关注的是博客系统的效率稳定,
在界面美化方面我们选择专门的主题,不仅能够提供更好的视觉效果,还能提供更多的扩展
主要扩展以下方面:
- 界面优化
- 网站的外部链接扩展
- 站点导航与搜索以及数据统计信息
- 全局html内容同步,实现广告效果
界面优化
风格
next本身就提供了多个风格,设置主题风格
1 | # Schemes |
打开侧边栏 sidebar: true
avatar图标
1 | avatar:url: http://res.aidroid.top/avatar.jpg |
footer
- 关闭powered: false
- 打开备案 excerpt_description: true
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21beian:
enable: true
icp: 皖ICP备2021008017号
# The digit in the num of gongan beian.
gongan_id:
# The full num of gongan beian.
gongan_num:
# The icon for gongan beian. See: http://www.beian.gov.cn/portal/download
gongan_icon_url: http://res.aidroid.top/share/ico/ba.svg
````
3. 使用多语言
language:
- zh-CN
- en
允许multililanguage
#### 文章显示摘要
在md文件中使用分割 <!-- more -->
并设置
Read more button
If true, the read more button will be displayed in excerpt section.
read_more_btn: true
1 | 同时要求分割符前要存在内容,否则不会生效 |
permalink: :title/
1 | 表示直接使用博客名 |
permalink: :mytag/:title/
1 | 这样博客链接就变成了http://example.com/mytag/title/ |
social:
GitHub: https://github.com/yasuo626 || fab fa-github
E-Mail: mailto:yasuo626.com@gmail.com || fa fa-envelope
home: https://aidroid.top
1 | #### 捐赠设置 |
npm install hexo-generator-searchdb
hexo:
search:
path: search.xml
field: post
content: true
format: html
next:
Local search
Dependencies: https://github.com/next-theme/hexo-generator-searchdb
local_search:
enable: true
If auto, trigger search by changing input.
If manual, trigger search by pressing enter key or search button.
trigger: auto
Show top n results per article, show all results by setting to -1
top_n_per_article: 1
Unescape html strings to the readable one.
unescape: false
Preload the search data when the page loads.
preload: false
1 |
|
busuanzi_count:
enable: true
total_visitors: true
total_visitors_icon: fa fa-user
total_views: true
total_views_icon: fa fa-eye
post_views: false
post_views_icon: fa fa-eye
1 |
|
next\layout_partials\footer.swig添加
### 全局html内容同步,实现广告效果
在next\layout_partials中即可实现添加自定义的服务
#### google ads
v1.5.2