next主题优化

hexo博客next主题主要优化修改方案

基于hexo5.x和next8.x


next官方文档https://theme-next.js.org/docs/

一、安装和升级

安装next主题

从github下载next

1
2
3
$ cd hexo/myblog
#直接下载到themes文件夹
$ git clone https://github.com/next-theme/hexo-theme-next themes/next

在hexo的_config.yum配置文件中搜索theme,并将其修改为next

2.更新next主题

1
2
$ cd hexo/myblog
$ npm install hexo-theme-next@latest

NexT 建议通过下面这种方式从版本 5 或 7 升级到版本 8:

  1. 复制一些旧的 NexT 文件:
    1.1. _config.yml或next.yml(如果您使用了Alternate Theme Config)。
    1.2. 放置在next/source/css/_custom/和next/source/css/_variables/目录中的自定义 CSS 文件。
    1.3. 自定义布局文件放置在next/layout/_custom/*.
    1.4. 可以通过存储库之间的比较工具找到的任何其他可能的自定义添加。
  2. 然后重命名旧的 NexT 文件夹,例如重命名next为next-old.
  3. 按照本文提供的方法安装新版本:安装说明。运行hexo clean并hexo s检查站点是否正常工作。
  4. 更新 Hexo 和 Hexo 插件
    如果在完成上述步骤后,执行hexo s或时出现错误hexo g,则表示可能是旧版本的 Hexo/Hexo 插件与新版本的主题 NexT 之间存在冲突。我们建议将 Hexo 升级到 5.0 或更高版本,并将 Hexo 插件升级到最新版本。您可以运行npm outdated以查看所有可升级的插件。
  5. 如果您发现任何错误或您只是不喜欢此版本,您可以随时切换回旧版本。

二、美化

1.主题选择

next的配置文件中搜索Scheme Settings
提供了四种主题:

1
2
3
4
scheme: Muse
scheme: Mist
scheme: Pisces
scheme: Gemini

本博客使用第三种

2.网页icon设置

next配置文件搜索favicon

1
2
3
4
5
6
favicon:
small: /images/favicon-16x16-next.png
medium: /images/favicon-32x32-next.png
apple_touch_icon: /images/apple-touch-icon-next.png
safari_pinned_tab: /images/logo.svg
#android_manifest: /manifest.json

制作favicon.ico图标,并放置在themes/next/sources/images即可

3.博客底部的标签样式

修改后效果↓

1
2
3
打开hexo\myblog\themes\next-old\layout\_macro\post.swig

搜索rel="tag",将后面的{{ tag_indicate }}修改为<i class="fa fa-tag"></i>

4.侧边栏头像

next配置文件搜索Sidebar Avatar

1
2
3
4
5
6
7
8
avatar:
# Replace the default image and set the url here.
url: http://q1.qlogo.cn/g?b=qq&nk=3033528136&s=640 #头像的网络位置或相对路径(blog/themes/next/source/images)
# If true, the avatar will be dispalyed in circle.
rounded: true #鼠标放在头像上时是否旋转
# If true, the avatar will be rotated with the cursor.
rotated: true #头像是否设为圆形,否则为矩形
opacity: 2 #头像放缩指数

5.侧边栏社交信息

next配置文件搜索Social Links

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
site_state: true # 是否在侧边栏加入日志、分类、标签等跳转链接

social:
#GitHub: https://github.com/yourname || fab fa-github
E-Mail: mailto:x@xxin.xyz || fa fa-envelope
QQ: https://wpa.qq.com/msgrd?v=3&uin=3033528136&site=qq&menu=yes || fab fa-qq
#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

social_icons:
enable: true #是否显示社交图标
icons_only: false #是否仅显示社交图标
transition: true

6.侧边栏设置

next配置文件搜索Sidebar Settings

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sidebar:
# Sidebar Position.
position: left #侧边栏位置
#position: right

# Manual define the sidebar width. If commented, will be default for:
# Muse | Mist: 320
# Pisces | Gemini: 240
#width: 300

# Sidebar Display (only for Muse | Mist), available values:
# - post expand on posts automatically. Default.
# - always expand for all pages automatically.
# - hide expand only when click on the sidebar toggle icon.
# - remove totally remove sidebar including sidebar toggle.
display: post

# Sidebar padding in pixels.
padding: 18 #侧边栏相对主菜单像素距离
# Sidebar offset from top menubar in pixels (only for Pisces | Gemini).
offset: 12 #侧边栏相对主菜单像素距离
onmobile: true #手机上是否显示侧边栏

7.版权信息

next配置文件搜索creative_commons

1
2
3
4
5
6
7
8
9
10
creative_commons: #版权配置
# Available values: by | by-nc | by-nc-nd | by-nc-sa | by-nd | by-sa | cc-zero
license: by-nc-sa
# Available values: big | small
size: small
sidebar: true #侧边栏显示版权信息
post: true #文章底部显示版权信息
# 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
language:

三、配置建议

1.浏览器缓存

next配置文件中搜索cache

1
2
enable: false
#默认关闭,开启后打开浏览器缓存

建议调试博客时关闭,平时打开

2.菜单标签与标签路径

next配置文件中搜索Menu Settings

1
2
3
4
5
6
7
8
9
10
#设置菜单项开启关闭、图标及其相对路径
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

只需去除”#”号即打开对应配置,同时需创建对应页面
1
2
#创建新页面
hexo new page tags

并将新页面中index.md的内容修改为
1
2
3
4
5
---
title: 标签
date: 2021-07-12 11:42:29
type: "tags" #对应的标签类型
---

3.页面图标设置

1
2
3
menu_settings:
icons: true # 是否显示各个页面的图标
badges: true # 标签、分类、归档内的文章数量显示

4.摘要显示

next配置文件搜索Read more button

1
read_more_btn: true #显示阅读全文按钮

会自动截取文章\前的内容作为摘要