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 ...)同样适用。
标签:归档,分类,taxonomy,hugo,个数,获取,文章 来源: https://www.cnblogs.com/yuhangch/p/hugo-get-taxonomy-count.html