hugo获取某个归档中文章个数

更新博客模板的时候,想在侧边栏展示每个归档的文章个数,方法就是获取taxonomy(分类)的值。

参考:https://discourse.gohugo.io/t/count-of-posts-in-category-taxonomy-terms-list/9805/3

{{ range $_, $taxonomy := .Site.Taxonomies.categories }}
  <li>
    <a href="{{ .Page.Permalink }}">{{.Page.Title}} 
      <small>({{ $taxonomy.Count }})</small>
    </a>
  </li>
{{ end }}

同理,其他的分类(tags ...)同样适用。

上一篇:Hugo+github博客第一次上传到github及提交更新


下一篇:MacOs使用hugo、github搭建个人博客