24 lines
654 B
HTML
24 lines
654 B
HTML
{{- $scratch := newScratch }}
|
|
|
|
{{- if not .Date.IsZero -}}
|
|
<span class="date">
|
|
{{ .Date | time.Format (default ":date_long" site.Params.DateFormat)}}
|
|
</span>
|
|
{{- end }}
|
|
|
|
{{- if (.Param "ShowReadingTime") -}}
|
|
{{- $scratch.Add "meta" (slice (i18n "read_time" .ReadingTime | default (printf "%d min" .ReadingTime))) }}
|
|
{{- end }}
|
|
|
|
{{- if (.Param "ShowWordCount") -}}
|
|
{{- $scratch.Add "meta" (slice (i18n "words" .WordCount | default (printf "%d words" .WordCount))) }}
|
|
{{- end }}
|
|
|
|
{{- with (partial "author.html" .) }}
|
|
{{- $scratch.Add "meta" (slice .) }}
|
|
{{- end }}
|
|
|
|
{{- with ($scratch.Get "meta") }}
|
|
{{- delimit . " · " -}}
|
|
{{- end -}}
|