mirror of https://github.com/jpanther/congo.git
19 lines
709 B
HTML
19 lines
709 B
HTML
{{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }}
|
|
<time datetime="{{ .Date }}">
|
|
{{ .Date.Format .Site.Params.article.dateFormat | default "2 January 2006" }}
|
|
</time>
|
|
{{ end }}
|
|
{{ if and
|
|
(.Params.showDate | default (.Site.Params.article.showDate | default true))
|
|
(.Params.showReadingTime | default (.Site.Params.article.showReadingTime | default true))
|
|
(ne .ReadingTime 0)
|
|
}}
|
|
<span class="px-1">·</span>
|
|
{{ end }}
|
|
{{ if and (.Params.showReadingTime | default (.Site.Params.article.showReadingTime | default true)) (ne .ReadingTime 0) }}
|
|
<span title="Reading time">
|
|
{{ .ReadingTime }}
|
|
min{{ if gt .ReadingTime 1 }}s{{ end }}
|
|
</span>
|
|
{{ end }}
|