{{ $cheers := "um" }}
{{ $posts := .Scratch.Get "postsCount" }}
{{ if gt $posts 210 }}
{{ $cheers = "excellent" }}
{{ else if gt $posts 130 }}
{{ $cheers = "great" }}
{{ else if gt $posts 80 }}
{{ $cheers = "good" }}
{{ else if gt $posts 50 }}
{{ $cheers = "nice" }}
{{ else if gt $posts 30 }}
{{ $cheers = "ok" }}
{{ end }}
{{ T (printf "PostArchive.cheers.%s" $cheers) }}
{{ T "Symbol.comma" }}
{{ T "Terms.archives" $posts | safeHTML }}
{{ T "Symbol.comma" }}
{{ T "PostArchive.keepOn" }}
{{ .Render "list" }}