Hugo主题优化
1. 时间轴中文化 2026-01-07 14:19:44 在配置文件中添加此配置defaultContentLanguage: zh,即可解决,无需更改主题文件。 使用基本配置时存在一个问题,时间轴月份仍然为英文,可以修改layouts/_default/archives.html 中代码实现月份显示中文。参考链接 代码如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 {{- if eq .Key "December" }} {{ "12月" }} {{- end }} {{- if eq .Key "November" }} {{ "11月" }} {{- end }} {{- if eq .Key "October" }} {{ "10月" }} {{- end }} {{- if eq .Key "September" }} {{ "9月" }} {{- end }} {{- if eq .Key "August" }} {{ "8月" }} {{- end }} {{- if eq .Key "July" }} {{ "7月" }} {{- end }} {{- if eq .Key "June" }} {{ "6月" }} {{- end }} {{- if eq .Key "May" }} {{ "5月" }} {{- end }} {{- if eq .Key "April" }} {{ "4月" }} {{- end }} {{- if eq .Key "March" }} {{ "3月" }} {{- end }} {{- if eq .Key "February" }} {{ "2月" }} {{- end }} {{- if eq .Key "January" }} {{ "1月" }} {{- end }} <!-- {{- .Key }} --> 2. 文章页面显示汉字 需要在themes/PaperMod/layouts/_default/list.html文件中判断.Title是Posts时显示为文章两字即可。因为开启了RSS订阅显示,需要在此文件中注释到RSS标志显示。 ...