2021-08-16 04:05:46 +00:00
|
|
|
{{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<time datetime="{{ .Date }}">
|
|
|
|
{{ .Date.Format .Site.Params.article.dateFormat | default "2 January 2006" }}
|
|
|
|
</time>
|
|
|
|
{{ end }}
|
|
|
|
{{ if and
|
2021-08-16 04:05:46 +00:00
|
|
|
(.Params.showDate | default (.Site.Params.article.showDate | default true))
|
|
|
|
(.Params.showReadingTime | default (.Site.Params.article.showReadingTime | default true))
|
2021-08-14 04:44:34 +00:00
|
|
|
(ne .ReadingTime 0)
|
|
|
|
}}
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="px-1 text-primary-500">·</span>
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ end }}
|
2021-08-16 04:05:46 +00:00
|
|
|
{{ if and (.Params.showReadingTime | default (.Site.Params.article.showReadingTime | default true)) (ne .ReadingTime 0) }}
|
2021-08-17 06:48:08 +00:00
|
|
|
<span title="{{ i18n "article.reading_time_title" }}">
|
|
|
|
{{ i18n "article.reading_time" .ReadingTime | emojify }}
|
2021-08-14 04:44:34 +00:00
|
|
|
</span>
|
|
|
|
{{ end }}
|