菜单栏和翻页按钮小图标显示不出来的问题终于解决了。
解决next主题菜单栏显示问号


![image text]()
修改主题配置文件下(themes/_config.yml)的menu,每一个路径后面加||然后加图标
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| menu: home: /||home # about: /about/||user # tags: /tags/||tags #categories: /categories/ || th archives: /archives/||archive top: /top/||signal links: /links/||user-plus #schedule: /schedule/ || calendar # books: /books/||book messageboard: /messageboard/ ||comment #sitemap: /sitemap.xml || sitemap #commonweal: /404/ || heartbeat
# Enable/Disable menu icons. menu_icons: enable: true
|
注意: /与||之间是没有空格的!
解决next主题下翻页按钮图标无法显示问题
修改themes/layout/_partials/pagination.swig文件,直接改为<与>
1 2 3 4 5 6
| {{ paginator({ prev_text: '<', next_text: '>', mid_size: 1 })
|
参考文章:
https://www.cnblogs.com/xiejava/p/12456273.html
https://blog.csdn.net/qq_36852780/article/details/104657642