Skip to content
This repository has been archived by the owner on Jun 21, 2021. It is now read-only.

Lruihao/hexo-theme-next

 
 

Repository files navigation

hexo-theme-next

如无必要,不再更新!(2019.09.13)
今晚我做出了一个慎重的决定,由于博主时间精力有限,需要更多的时间来工作和学习。所以我将放弃对next的主题的自定义修改,next主题官方已经更新到了7.0+的版本,喜欢next主题风格的朋友可以在github更新。
我这也算是上古版本了,版本差距实在过大,所以我也将放弃博客使用主题的更新。
以下仍为当前博客使用主题,lib资源已打包github。

基于hexo-theme-next 6.0+的Pisces模板做的DIY扩展性设计。主要是一些custom stlye还有一些第三方的js。修改的地方太多也有点小乱就不提PR了。 官方Demo => https://theme-next.org
记录一下折腾过程,修改内容以博採眾長为准,以后备份恢复博客也好方便自己。本文之前的美化修改请见hexo分类主题中若有遗漏第三方插件或应用的key及id值等请修改为自己对应的值

主要的几个自定义文件

_config.swig                                 #主题配置文件 相关账户信息自己注册替换
\layout\custom\head.swig                     #在头部自定义加入标签
\layout\custom\google_adsense.swig           #谷歌广告模块,内有注释暂时弃用
\layout\_layout.swig                         #主布局
\layout\_macro\post.swig                     #文章布局
\layout\_macro\post-copyright.swig           #文章版权
\layout\_macro\siderbar.swig                 #侧栏模板
\layout\_third-party\copy-code.swig          #复制按钮
\layout\_partials\comments.swig              #评论主模板
\layout\_partials\footer.swig                #底部模板#该模块在layout.swig引入,用于在body自定义标签
\layout\_partials\footer_custom.swig         #footer自定义文件
\layout\_third-party\custom.swig             #该模块在layout.swig引入用于在body自定义标签
\source\css\_custom\customs.styl             #主要用户自定义样式表
\source\fonts\                               #引入了一些我的手写体及外部字体
\scripts\qcloudcdn.js                        #腾讯云cos桶刷新缓存的脚本,不需要可删掉[^1]       

^1

初步安装

安装整个改过的主题,然后下载相应的lib资源

cd hexo
git clone https://github.com/Lruihao/hexo-theme-next themes/next

lib.png

更新内容

更多自定义详见源码

links模板

自定义友链模板,打开hexo\themes\next\layout\新建links.swig文件,写下links.swig内容后保存。

  • 若未使用懒加载请将模板中的data-original属性改为src
  • 若懒加载无法加载预览图请手动添加src="/images/loading.gif"
  • 若fancybox显示alt内容请更换fancybox2或者将alt属值删除

然后hexo n page links新建一个页面文章配置写下如下内容:

---
title: 友情链接
layout: links
---

然后在links页面文件夹下面新建文件夹_data,再在里面新建links.yml,内容如下

- nickname: 博採眾長      
  avatar: http://lruihao.cn/images/avatar.png
  site: http://lruihao.cn 
  info: 一个菜鸟的博客
- nickname:                 #友链名称
  avatar:                   #友链头像
  site:                     #友链地址
  info:                     #友链说明

备案信息自定义

# -------------------------------------------------------------
# footer_custom Settings
# -------------------------------------------------------------
beian:
  enable: true
  gov: 湘公网安备 43030402000254号
  recordcode: 43030402000254
  icp: 湘ICP备18020535号

文字抖动特效

<div class="shaky">(づ●'◡'●)づ ❥内容区</div>

左下角微信公众号

\source\css\_custom\customs.styl  

相关文章收纳

加入H5标签,实现可收纳功能,点击查看详情。

Chat Services

共chatra,tidio,daovoice三个选项,三选一

# Chatra Support
# See: https://chatra.io
# Dashboard: https://app.chatra.io/settings/general
chatra:
  enable: false
  async: true
  id: # visit Dashboard to get your ChatraID
  #embed: # unfinished experimental feature for developers, See: https://chatra.io/help/api/#injectto

# Tidio Support
# See: https://www.tidiochat.com
# Dashboard: https://www.tidiochat.com/panel/dashboard
tidio:
  enable: false
  key: # Public Key, get it from Dashboard, See: https://www.tidiochat.com/panel/settings/developer

#在线客服
daovoice: true
daovoice_app_id: xxxx   # http://www.daovoice.io/

pdf和Mermaid解析模块

pdf传送门

pdf:
  enable: false
  # Default height
  height: 500px
  pdfobject:
    cdn: //cdn.jsdelivr.net/npm/pdfobject@2/pdfobject.min.js
    #cdn: //cdnjs.cloudflare.com/ajax/libs/pdfobject/2.1.1/pdfobject.min.js

# Mermaid tag
mermaid:
  enable: false
  # Available themes: default | dark | forest | neutral
  theme: forest
  cdn: //cdn.jsdelivr.net/npm/mermaid@8/dist/mermaid.min.js
  #cdn: //cdnjs.cloudflare.com/ajax/libs/mermaid/8.0.0/mermaid.min.js

模仿csdn转发样式

...
   <a class="post-title-link" href="{{ url_for(post.path) }}" itemprop="url">
+    {% if post.repost %}
+      <span class="repost">转</span>
+    {% endif %}
     {{ post.title | default(__('post.untitled'))}}
   </a>
 {% else -%}
+  {% if post.repost %}
+    <span class="repost">转</span>
+  {% endif %}
   {{- post.title -}}
...
.repost {
  color: #5acc79;
  border: 1px solid #e7f4df;
  border-radius: 20px;
  padding: 2px 5px;
  font-size: 15px;
  font-weight: 500;
}
---
title: xxxx
repost: true
---

预览

热度页面

打开hexo\themes\next\layout新建top.swig文件,写下如下内容保存: 其中第36行改成你自己的leancloud的appid和appkey,比如我的是在主题配置文件里面的valine配置下,所以我就写成theme.valine.appid。和我一样就不需要修改,其他自行配置。

然后hexo n page top新建一个页面文章配置写下如下内容,limit表示显示篇数:

---
title: 热度
layout: top
limit: 20
---

复制按钮样式

lightbtn.png nightbtn.png flatbtn.png 3dbtn.png

本来只想简单美化一下变成night样式的,后来写完发现3dbtn也挺喜欢的。

codeblock:
  # Manual define the border radius in codeblock
  # Leave it empty for the default 1
  border_radius: 5
  # Add copy button on codeblock
  copy_button:
    enable: true
    # Show text copy result
    show_result: true
    # Style: 'light,night,flat,3dbtn' is currently available, leave it empty or light is default theme
    style: night

About

Elegant and powerful theme for Hexo.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • CSS 52.5%
  • JavaScript 46.9%
  • CoffeeScript 0.6%