由于之前一直使用的主题even长期没有维护,在最新版的hugo下已经显示不大好了,于是换上另外一个自己比较喜欢的主题Binario,这个主题其实也用了蛮长时间了,各方面都比较满意,只是首页无法显示摘要,经过一番研究后,一个字“哈哈哈”,解决问题了,只需在config.toml中加入这一条就行。如果要使用(CJK 中文 / 日语 / 韩语) 语言创建内容,并且想使用 Hugo 的自动摘要拆分功能,请在网站配置中将 hasCJKLanguage 设置为 true

hasCJKLanguage = true # 开启可以让「字数统计」统计汉字

summaryLength = 120 # 显示的字数

也可以使用文章描述作为摘要,在文章中添加 description: 文章描述

hugo在文章页添加上一页下一页代码,在主题single文件中添加。

<div class=”pagination” style=”font-size: 16px;display: block;margin: 0 auto;float: left;”>
      {{ if .NextInSection }}
        下一篇<a href=”{{ .NextInSection.Permalink }}”>{{ .NextInSection.Title }}</a>
      {{ end }}<br>
      {{ if .PrevInSection }}
        上一篇<a href=”{{ .PrevInSection.Permalink }}”>{{ .PrevInSection.Title }}</a>
      {{ end }}
    </div>