[Hugo] 記事数やタグ数を取得する

全ての記事数やpostの記事数、カテゴリ数、タグ数を取得します。

環境

  • Windows 10 Pro 64bit 1709
  • Hugo 0.38.2

結果

テンプレートファイル(list.htmlterms.htmlなど)に記述します。

全ての記事数
{{ len .Site.RegularPages }}

postの記事数
{{ len (where .Site.RegularPages "Section" "==" "post") }}

カテゴリ数
{{ len .Site.Taxonomies.categories }}

タグ数
{{ len .Site.Taxonomies.tags }}

感謝

2018-05-24 (木)