title: Hexo-NexT主题分页的翻页箭头显示 typora-copy-images-to: Hexo-NexT主题分页的翻页箭头显示 date: 2020-03-29 12:01:41 tags: 经验总结 categories: 经验总结
部署博客后发现:
修改代码的位置: themes\next\layout\_partials\pagination.swig
原来为:
{% if page.prev or page.next %}
<nav class="pagination">
{{
paginator({
prev_text: '<i class="fa fa-angle-left"></i>',
next_text: '<i class="fa fa-angle-right"></i>',
mid_size: 1
})
}}
</nav>
{% endif %}
123456789101112
修改为:
{% if page.prev or page.next %}
<nav class="pagination">
{{
paginator({
prev_text: '<',
next_text: '>',
mid_size: 1
})
}}
</nav>
{% endif %}