{{ $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 "PostArchiveCheers%s" $cheers) }}
{{ T "SymbolComma" }}
{{ T "ArchiveCounterTitle" $posts | safeHTML }}
{{ T "SymbolComma" }}
{{ T "PostArchiveKeepOn" }}
{{ .Render "list" }}