Let’s fancy our web pages!
一般要设置的东西
留言功能
- 在主题配置文件中打开留言功能
1
2
3
4
5
6
7
8menu:
home: /
categories: /categories
archives: /archives
tags: /tags
message: /message # 新增 message
about: /about
#commonweal: /404.html
- 设置留言图标
1
2
3
4
5
6
7
8
9menu_icons:
enable: true
home: home
categories: th
tags: tags
archives: archive
commonweal: heartbeat
message: external-link # 新增 message
about: user
- 配置对应的中文名称
在themes\next\languages\zh-Hans.yml
文件中修改如下1
2
3
4
5
6
7
8
9
10menu:
home: 首页
archives: 归档
categories: 分类
tags: 标签
about: 关于
search: 搜索
message: 留言 # 新增 留言
commonweal: 公益404
udpate: 更新
然后执行如下命令生成留言页
1 | hexo n page "message" |
1 | hexo clean |
修改页脚显示内容
在themes/next/_config.yml
中修改
主题配置文件_config.yml
完整的主题配置文件见下
Code
1 |
|