🌐 Use language specific date formats

This commit is contained in:
James Panther
2022-01-11 12:13:18 +11:00
parent 9c8601102c
commit 6eab5f95fb
8 changed files with 11 additions and 7 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
<time datetime="{{ .Date }}">
{{- .Date.Format (.Site.Params.article.dateFormat | default "2 January 2006") -}}
{{- .Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long") -}}
</time>
{{ if .Params.showDateUpdated | default (.Site.Params.article.showDateUpdated | default false) }}
&nbsp;(Updated:&nbsp;
<time datetime="{{ .Lastmod }}">
{{- .Lastmod.Format (.Site.Params.article.dateFormat | default "2 January 2006") -}}
{{- .Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long") -}}
</time>
)
{{ end }}