0%

Hexo NexT主题设置首页和归档页的分页数量

要美观一点的话,首页的分页数要设置得短一些,归档页的分页数要长一些。

1、安装插件

在站点根目录执行以下命令

1
2
3
# 安装相应的插件
npm install --save hexo-generator-index
npm install --save hexo-generator-archive

2、修改配置

修改站点根目录配置文件_config.xml

1
2
3
4
5
6
7
8
9
10
11
# 这一段默认就有的
index_generator:
path: ''
per_page: 5
order_by: -date

# 归档页面
archive_generator:
per_page: 50
yearly: true
monthly: true