mirror of
https://github.com/TrezOne/congo-hindi-gujarati.git
synced 2026-07-19 00:58:28 -04:00
✨ Add article pagination links and display params
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
{{ if .Site.Params.article.showDate | default true }}
|
||||
<time datetime="{{ .Date }}">
|
||||
{{ .Date.Format .Site.Params.article.dateFormat | default "2 January 2006" }}
|
||||
</time>
|
||||
{{ end }}
|
||||
{{ if and
|
||||
(.Site.Params.article.showDate | default true)
|
||||
(.Site.Params.article.showReadingTime | default true)
|
||||
(ne .ReadingTime 0)
|
||||
}}
|
||||
<span class="px-1">·</span>
|
||||
{{ end }}
|
||||
{{ if and (.Site.Params.article.showReadingTime | default true) (ne .ReadingTime 0) }}
|
||||
<span title="Reading time">
|
||||
{{ .ReadingTime }}
|
||||
min{{ if gt .ReadingTime 1 }}s{{ end }}
|
||||
</span>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user