0%

Hexo | 主题配置文件

Let’s fancy our web pages!

一般要设置的东西

留言功能

  1. 在主题配置文件中打开留言功能
    1
    2
    3
    4
    5
    6
    7
    8
    menu:
    home: /
    categories: /categories
    archives: /archives
    tags: /tags
    message: /message # 新增 message
    about: /about
    #commonweal: /404.html

  1. 设置留言图标
    1
    2
    3
    4
    5
    6
    7
    8
    9
    menu_icons:
    enable: true
    home: home
    categories: th
    tags: tags
    archives: archive
    commonweal: heartbeat
    message: external-link # 新增 message
    about: user

  1. 配置对应的中文名称
    themes\next\languages\zh-Hans.yml文件中修改如下
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    menu:
    home: 首页
    archives: 归档
    categories: 分类
    tags: 标签
    about: 关于
    search: 搜索
    message: 留言 # 新增 留言
    commonweal: 公益404
    udpate: 更新

然后执行如下命令生成留言页

1
hexo n page "message"

然后清除缓存,重新生成和启动本地预览便可看到效果,只不过留言功能什么也没有
1
2
3
hexo clean
hexo g
hexo s

修改页脚显示内容

themes/next/_config.yml中修改

主题配置文件_config.yml

完整的主题配置文件见下