mirror of https://github.com/jpanther/congo.git
12 lines
420 B
HTML
12 lines
420 B
HTML
<time datetime="{{ .Date }}">
|
|
{{- .Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long") -}}
|
|
</time>
|
|
{{ if .Params.showDateUpdated | default (.Site.Params.article.showDateUpdated | default false) }}
|
|
(Updated:
|
|
<time datetime="{{ .Lastmod }}">
|
|
{{- .Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long") -}}
|
|
</time>
|
|
)
|
|
{{ end }}
|
|
{{- /* Trim EOF */ -}}
|