2018-05-24 (木)
[Hugo] 記事数やタグ数を取得する
全ての記事数やpostの記事数、カテゴリ数、タグ数を取得します。
環境
- Windows 10 Pro 64bit 1709
- Hugo 0.38.2
結果
テンプレートファイル(list.html
やterms.html
など)に記述します。
全ての記事数
{{ len .Site.RegularPages }}
postの記事数
{{ len (where .Site.RegularPages "Section" "==" "post") }}
カテゴリ数
{{ len .Site.Taxonomies.categories }}
タグ数
{{ len .Site.Taxonomies.tags }}
感謝
2018-05-24 (木)
関連記事
新着記事