summaryrefslogtreecommitdiffstats
path: root/tpl/tplimpl/embedded/templates.autogen.go
diff options
context:
space:
mode:
authorDaniel Tipping <daniel@oldreliable.tech>2020-03-14 12:57:17 +0000
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-05-07 18:42:20 +0200
commit6205d56b85fea31e008cd0fef26805bab8084786 (patch)
treef433abfc379dd871219a0e33be8cf071065264d5 /tpl/tplimpl/embedded/templates.autogen.go
parenta5039dddaf5f012aeab3595abf771cffa6df0e18 (diff)
Use .Lastmod for og:updated_time
.Lastmod is the time at which the website was most recently updated, rather than .Date which is the time at which the website content file was created.
Diffstat (limited to 'tpl/tplimpl/embedded/templates.autogen.go')
-rw-r--r--tpl/tplimpl/embedded/templates.autogen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/tplimpl/embedded/templates.autogen.go b/tpl/tplimpl/embedded/templates.autogen.go
index 821354c99..70586ed33 100644
--- a/tpl/tplimpl/embedded/templates.autogen.go
+++ b/tpl/tplimpl/embedded/templates.autogen.go
@@ -211,7 +211,7 @@ if (!doNotTrack) {
{{ end }}
{{- if not .Lastmod.IsZero }}<meta property="article:modified_time" {{ .Lastmod.Format $iso8601 | printf "content=%q" | safeHTMLAttr }} />{{ end }}
{{- else }}
-{{- if not .Date.IsZero }}<meta property="og:updated_time" {{ .Date.Format $iso8601 | printf "content=%q" | safeHTMLAttr }} />
+{{- if not .Date.IsZero }}<meta property="og:updated_time" {{ .Lastmod.Format $iso8601 | printf "content=%q" | safeHTMLAttr }} />
{{- end }}
{{- end }}{{/* .IsPage */}}