Skip to content

Commit 903ae2d

Browse files
committed
Localize post meta dates with time.Format function
* Use time.Format function (via `dateFormat` alias) to format post meta dates. It allows dates to be localized easily (with weekdays and months in the current language). Hugo v0.87.0 or later is required. * Use old default format to preserve compatibility with older versions of Hugo References: - https://gohugo.io/functions/dateformat/ - https://gohugo.io/news/0.87.0-relnotes/
1 parent 81795f3 commit 903ae2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎layouts/partials/post_meta/date.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<div class="meta__item-datetime meta__item">
33
{{ partial "svg/time.svg" (dict "class" "meta__icon") -}}
44
<time class="meta__text" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
5-
{{- .Date.Format (.Site.Params.dateformat | default "January 02, 2006") -}}
5+
{{- .Date | dateFormat (.Site.Params.dateformat | default "January 02, 2006") -}}
66
</time>
77
{{- if ne .Date .Lastmod }}
88
<time class="meta__text" datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}">(
9-
{{- T "meta_lastmod" }}: {{ .Lastmod.Format (.Site.Params.dateformat | default "January 02, 2006") -}}
9+
{{- T "meta_lastmod" }}: {{ .Lastmod | dateFormat (.Site.Params.dateformat | default "January 02, 2006") -}}
1010
)</time>
1111
{{- end -}}
1212
</div>

0 commit comments

Comments
 (0)