{{- with .Date }}
{{- end }}
{{- if and .Lastmod (gt (.Lastmod.Sub .Date).Hours 24.0) }}
{{ i18n "updatedOn" }}
{{- end }}
{{- if gt .ReadingTime 0 }}
{{ i18n "readingTime" (dict "Count" .ReadingTime) | default (printf "%d min" .ReadingTime) }}
{{- end }}
{{- if and (site.Params.showWordCount | default false) (gt .WordCount 0) }}
{{ i18n "wordCount" (dict "Count" .WordCount) | default (printf "%d words" .WordCount) }}
{{- end }}
{{/* Categories are deliberately not surfaced here; the `categories` taxonomy is routing-only. */}}
{{/* Tag plural is part of the theme contract — see docs/config.md. */}}
{{- with .GetTerms "tags" }}
{{- range $i, $term := . -}}
{{- if $i }}, {{ end -}}
#{{ $term.LinkTitle }}
{{- end -}}
{{- end }}