Next7.7.1
添加页面载条
- 打开
\themes\next\_config.yml
- 搜索 pace: ,设置为 true,theme 为 minimal
- 下载依赖资源,点击查看其他加载样式
$ cd <blog-folder>/themes/next
$ git clone https://github.com/theme-next/theme-next-pace source/lib/pace
侧边栏阅读进度 + Top
- 打开
\themes\next\_config.yml
- 搜索 back2top ,如下设置
back2top:
enable: true
# 回页面顶部
sidebar: true
# 显示阅读百分比
scrollpercent: true
顶部文章读进度条
- 打开
\themes\next\_config.yml
- 搜索 reading_progress: ,进行如下配置
reading_progress:
# 是否开启
enable: true
# 顶部 top,顶部 bottom
position: top
# 进度条颜色
color: "#37c6c0"
# 进度条高度
height: 3px
文章结束标志
-
在
\source
目录下,新建_data
文件夹 -
进入
_data
文件夹,创建文件post-body-end.swig
-
编辑文件,添加如下内容
<div> {% if not is_index %} <div style="text-align:center;color: #ccc;font-size:14px;"> ------------------------------<em>THE END. </em><!--<i class="fa fa-paw"></i>-->------------------------------ </div> {% endif %} </div>
-
打开
\themes\next\_config.yml
-
搜索 custom_file_path ,将如下内容取消注释
postBodyEnd: source/_data/post-body-end.swig
文章底部标签样式优化
-
打开
\themes\next\_config.yml
-
搜索 creative_commons: ,进行如下配置
creative_commons: license: by-nc-sa sidebar: true post: true
修改文章内链接文本样式
-
打开文件
themes/next/source/css/_common/components/post/post.styl
-
在文件尾添加如下样式代码
.post-body p a { color: #007ab2; border-bottom: none; border-bottom: 1px solid #007ab2; &:hover { color: #ff4f79; border-bottom: none; border-bottom: 1px solid #004f79; }}
修改底部年份和名称中间的图标
-
打开
\themes\next\_config.yml
-
搜索 footer ,设置如下
footer: icon: # 图标名称 name: user # 是否开启动画效果 animated: false # 图标颜色 color: "#808080"
显示总访问量
-
打开
\themes\next\_config.yml
-
搜索 busuanzi_count ,设置如下
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
开启 SEO
- 打开
\themes\next\_config.yml
- 搜索 seo:
将其设置为
true
添加站点地图
安装插件
安装插件来生成 sitemap 文件,传统的 sitemap。
npm install hexo-generator-sitemap --save
修改配置文件
-
打开
\_config.yml
-
添加如下信息
sitemap: path: sitemap.xml
安装完成后执行 hexo clean & hexo g
即会在站点 public 目录下生成 sitemap.xml
和 baidusitemap.xml
。
添加蜘蛛协议 robots
-
\source 文件夹下新建 robots.txt 文件
-
文件内容如下
User-agent: * Allow: / Allow: /archives/ Allow: /categories/ Allow: /tags/ Allow: /resources/ Disallow: /vendors/ Disallow: /js/ Disallow: /css/ Disallow: /fonts/ Disallow: /vendors/ Disallow: /fancybox/ Sitemap: https://你的域名/sitemap.xml
Allow 字段的值即为允许搜索引擎爬取的内容
为外链添加 nofollow 标签
这个还没搞懂怎么回事 ,待更
文章优化
修改文章访问路径
默认的链接太过冗长,不利于seo,我们需要修改链接样式
- 打开
\_config.yml
- 将 permalink 修改为如下内容
permalink: posts/:abbrlink/ #:year/:month/:day/:title/
Mathjax
https://blog.csdn.net/wgshun616/article/details/81019687
参考:
https://blog.csdn.net/weixin_41024483/article/details/104801164?%3E
以下不是Next7.7.1版本的设置
自定义友链页面
Next默认的友链时在主题配置文件中links下面,链接变多后,侧栏页面的排版很不美观,这时候我们可以给友链新增一个单独的页面。
新增links页面
hexo new page links
然后再博客根目录/source 下会生成一个links文件夹,打开其中的index.md, 在其头部加上type: “links”
###配置menu 主题配置文件中menu下添加
Links: /links/|| link
在/themes/next/languages/zh-Hans.yml文件中menu下增加中文描述
links: 友链
##文章底部标签显示的优化 修改/themes/next/layout/_macro/post.swig,搜索 rel=“tag”>#,将 # 换成
<i class="fa fa-tag"></i>
##Hexo-Next搭建个人博客(代码块复制功能) 为了提高博客代码块的用户体验,仅仅代码高亮还不行,最好还能一键复制代码。故此文将讲述Hexo NexT主题博客的代码块复制功能配置。
###下载 clipboard.js 三方插件 clipboardjs ,相关介绍和兼容性我就不赘述了,去它主页或github上看。 下载地址:
clipboard.js clipboard.min.js 推荐 保存文件clipboard.js / clipboard.min.js ,目录如下: .\themes\next\source\js\src
###clipboardjs 使用 也是在.\themes\next\source\js\src目录下,创建clipboard-use.js,文件内容如下:
/*页面载入完成后,创建复制按钮*/
!function (e, t, a) {
/* code */
var initCopyCode = function(){
var copyHtml = '';
copyHtml += '<button class="btn-copy" data-clipboard-snippet="">';
//fa fa-globe可以去字体库替换自己想要的图标
copyHtml += ' <i class="fa fa-clipboard"></i><span>copy</span>';
copyHtml += '</button>';
$(".highlight .code pre").before(copyHtml);
new ClipboardJS('.btn-copy', {
target: function(trigger) {
return trigger.nextElementSibling;
}
});
}
initCopyCode();
}(window, document);
在.\themes\next\source\css_custom\custom.styl样式文件中添加下面代码:
//代码块复制按钮
.highlight{
//方便copy代码按钮(btn-copy)的定位
position: relative;
}
.btn-copy {
display: inline-block;
cursor: pointer;
background-color: #eee;
background-image: linear-gradient(#fcfcfc,#eee);
border: 1px solid #d5d5d5;
border-radius: 3px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-appearance: none;
font-size: 13px;
font-weight: 700;
line-height: 20px;
color: #333;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
padding: 2px 6px;
position: absolute;
right: 5px;
top: 5px;
opacity: 0;
}
.btn-copy span {
margin-left: 5px;
}
.highlight:hover .btn-copy{
opacity: 1;
}
###引用 在.\themes\next\layout_layout.swig文件中,添加引用(注:在 swig 末尾或 body 结束标签(