设置网页上显示的图标
favicon:
#small: /images/favicon-16x16-next.png
small: /images/favicon.png
# medium: /images/favicon-32x32-next.png
medium: /images/favicon.png
apple_touch_icon: /images/apple-touch-icon-next.png
safari_pinned_tab: /images/logo.svg
#android_manifest: /images/manifest.json
#ms_browserconfig: /images/browserconfig.xml
# Sidebar Avatar
avatar:
# Replace the default image and set the url here.
url: https://hbimg.huabanimg.com/64d7413a3a797bcef0e1b5299f431d0a189041aa5549-IDjqNG_fw658/format/webp
# If true, the avatar will be dispalyed in circle.显示为圆形
rounded: false
# If true, the avatar will be rotated with the cursor.点击时旋转
rotated: false
social_icons:
enable: true # 是否在社交链接标签上显示图标
icons_only: false # 只显示图标
transition: false # 是否显示过渡效果
creative_commons:
license: by-nc-sa # 版权说明
sidebar: false # 侧边栏就不需要版权了,false
post: false # 文章需要搬去哪说明,修改为true
language: # 语言可以不用设置,因为在站点配置文件中已经设置好了
在Hexo的根目录下安装symbols_count_time
npm install hexo-symbols-count-time
_config.yml
在合适位置添加以下配置信息
# 设置博客单词统计
symbols_count_time:
# 文章字数统计
symbols: true
# 文章阅读时间统计
time: true
# 站点总字数统计
total_symbols: false
# 站点总阅读时间统计
total_time: false
exclude_codeblock: false
themes/next/_config.yml
在symbols_count_time选下开启单词统计
# Post wordcount display settings
# Dependencies: https://github.com/theme-next/hexo-symbols-count-time
symbols_count_time: # 预计阅读时间和文章字数统计,需要安装插件,具体的设参考上面的链接,
# 是否另起一行(true的话不和发表时间等同一行)
separated_meta: true
# 首页文章统计数量前是否显示文字描述(本文字数、阅读时长)
item_text_post: true
# 页面底部统计数量前是否显示文字描述(站点总字数、站点阅读时长)
item_text_total: false
awl: 4 # 平均字长
wpm: 275 # 每分钟阅读字数
重新生成Hexo即可
npm install hexo-abbrlink --save
配置
进入 Hexo 配置文件(非主题配置文件),找到 permalink
,按下图修改:
permalink: posts/:abbrlink/
为了方便爬虫爬取,也可以将代码修改为:
permalink: :abbrlink.html
使用
hexo clean & hexo g & hexo depl