Hexo分页显示问题

错误

Hexo 分页显示有问题,如下:

Hexo分页显示问题

相关 issue 3794 。

解决

查看最新模板:https://github.com/theme-next/hexo-theme-next/blob/master/layout/_partials/pagination.swig

修改页码模板文件 <Hexo目录>/themes/next/layout/_partials/pagination.swig

1
2
3
4
5
6
7
8
9
10
11
12
{%- if page.prev or page.next %}
<nav class="pagination">
{{
paginator({
prev_text: '<i class="fa fa-angle-left" aria-label="' + __('accessibility.prev_page') + '"></i>',
next_text: '<i class="fa fa-angle-right" aria-label="' + __('accessibility.next_page') + '"></i>',
mid_size : 1,
escape : false
})
}}
</nav>
{%- endif %}

以上是 Hexo分页显示问题 的全部内容, 来源链接: utcz.com/a/131989.html

回到顶部