更新博客模板的时候,想在侧边栏展示每个归档的文章个数,方法就是获取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 ...)同样适用。