# Creative Commons 4.0 International License. # See: https://creativecommons.org/share-your-work/licensing-types-examples # Available values of license: by | by-nc | by-nc-nd | by-nc-sa | by-nd | by-sa | zero # You can set a language value if you prefer a translated version of CC license, e.g. deed.zh # CC licenses are available in 39 languages, you can find the specific and correct abbreviation you need on https://creativecommons.org creative_commons: license: by-nc-sa sidebar: true post: true language:
版权声明文本是可以修改的,后面会介绍到。
设置导航栏菜单
我觉得设置多了太麻烦,于是就保留了主页标签关于归档四个
1 2 3 4 5 6 7 8 9 10 11 12 13 14
menu: home: / || fa fa-home about: /about/ || fa fa-user tags: /tags/ || fa fa-tags #categories: /categories/ || fa fa-th archives: /archives/ || fa fa-archive #schedule: /schedule/ || fa fa-calendar #sitemap: /sitemap.xml || fa fa-sitemap #commonweal: /404/ || fa fa-heartbeat
sidebar: # Sidebar Position. position: left # position: right
设置侧边栏的头像,一般为作者的头像,和博客的logo有区别。
可以是方形或圆形,还可以选择鼠标停留时,魔性的转动(我没设置)。
1 2 3 4 5 6 7 8
# Sidebar Avatar avatar: # Replace the default image and set the url here. url: /uploads/avatar.jpg #头像图片地址 # If true, the avatar will be dispalyed in circle.圆形选true 方形选false rounded: true # If true, the avatar will be rotated with the cursor.魔性转动,打开选true rotated: false
侧边栏外链,可以指向某篇文章,或某个网址。这里可以用来展示其他发布渠道。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
social: #GitHub: https://github.com/yourname || fab fa-github #E-Mail: mailto:yourname@gmail.com || fa fa-envelope #Weibo: https://weibo.com/yourname || fab fa-weibo #Google: https://plus.google.com/yourname || fab fa-google #Twitter: https://twitter.com/yourname || fab fa-twitter #FB Page: https://www.facebook.com/yourname || fab fa-facebook #StackOverflow: https://stackoverflow.com/yourname || fab fa-stack-overflow #YouTube: https://youtube.com/yourname || fab fa-youtube #Instagram: https://instagram.com/yourname || fab fa-instagram #Skype: skype:yourname?call|chat || fab fa-skype
# Blog rolls links_settings: icon: fa fa-link title: 我的朋友 # Available values: block | inline layout: block #友情链接 links: Ned: https://wangez.site
返回顶部按钮显示阅读进度
觉得没什么用,不过我还是用了(打脸ing)
1 2 3 4 5 6
back2top: enable: true # Back to top in sidebar. sidebar: false # Scroll percent label in b2t button. scrollpercent: true
关闭动画效果
我觉得博客,渲染的太华丽反而不好,于是就将其关了,如果想打开可以将enable的值设置为true。
1 2 3
motion: enable: false async: false
到此,配置差不多就结束了,如果你还想优化你的博客,可以继续看下去。
优化你的博客
优化文章链接
优化文章链接,为了避免链接中出现中文导致太长或者死链的情况出现,可以使用一个插件来避免这种情况
插件:hexo-abbrlink
首先在博客根目录运行Git Bash,输入以下指令安装hexo-abbrlink:
1
npm install hexo-abbrlink --save
打开站点配置文件_config.yml,修改permalink为:
1
permalink: posts/:abbrlink.html/
记得将原有的permalink注释掉或者删掉
在站点配置文件_config.yml中添加以下代码:
1 2 3 4
#abbrlink配置 abbrlink: alg: crc32 #support crc16(default) and crc32 rep: dec #support dec(default) and hex
到这,关于优化文章链接的操作我们就做完啦!
自定义文本内容
文件路径:themes/next/languages/zh-CN.yml
需要打开这个文件进行修改。
选择哪个语言文档取决于你的站点配置文件上的语言写的是什么!
我将所有的日志换成了文章理由是我觉得日志怪怪的,还是文章比较正常。
Ctrl+H 进行批量替换。(不会真有人一个一个改吧,不会吧不会吧)
添加访客统计、访问次数统计、文章阅读次数统计
打开主题配置文件
搜索找到busuanzi_count,把enable设置为true
1 2 3 4 5 6 7 8 9 10
# Show Views / Visitors of the website / page with busuanzi.#展示访问数 # Get more information on http://ibruce.info/2015/04/04/busuanzi busuanzi_count: enable: true total_visitors: true #统计访客数 total_visitors_icon: user total_views: true #统计访问数 total_views_icon: eye post_views: true #统计文章阅读数 post_views_icon: eye