hugo-theme-next/layouts/partials/_funs/cal_siteinfo.html

18 lines
527 B
HTML
Raw Normal View History

{{/** Calculate some information for site operation **/}}
{{ $scratch := newScratch }}
{{ $pages := (where .Page.Site.RegularPages "Section" "in" .Site.Params.mainSections).ByLastmod.Reverse }}
{{ range $pages }}
{{ $scratch.Add "totalWords" .WordCount }}
{{ $scratch.Add "totalTimes" .ReadingTime }}
{{ end }}
{{ range first 1 $pages }}
{{ $lastMod := default .Date .Lastmod }}
{{ $scratch.Set "first" $lastMod }}
{{ end }}
{{ range last 1 $pages }}
{{ $scratch.Set "last" .Date }}
{{ end }}
{{ return $scratch }}