mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
16213a37e5
- hide zero date (closes #33) - fix separator - refactor
12 lines
412 B
HTML
12 lines
412 B
HTML
{{- if not .Date.IsZero -}}
|
|
<time>{{- .Date.Format (default "January 2, 2006" .Site.Params.DateFormat) }}</time> ·
|
|
{{- end -}}
|
|
|
|
{{- if $.Site.Params.ShowReadingTime -}}
|
|
{{- i18n "read_time" .ReadingTime | default (printf "%s min" .ReadingTime) }} ·
|
|
{{- end -}}
|
|
|
|
{{- if or .Params.author .Site.Params.author }}
|
|
{{- printf "%s" (.Params.author | default .Site.Params.author) }}
|
|
{{- end -}}
|