2020-09-17 21:59:57 +02:00
|
|
|
{{- $title := partialCached "data/title" . .RelPermalink -}}
|
|
|
|
|
{{- $description := partialCached "data/description" . .RelPermalink -}}
|
2020-09-11 23:00:19 +02:00
|
|
|
|
2024-03-12 14:45:59 +01:00
|
|
|
<meta property='og:title' {{ printf "content=%q" $title | safeHTMLAttr }}>
|
|
|
|
|
<meta property='og:description' {{ printf "content=%q" $description | safeHTMLAttr }}>
|
2020-08-22 13:20:08 +02:00
|
|
|
<meta property='og:url' content='{{ .Permalink }}'>
|
|
|
|
|
<meta property='og:site_name' content='{{ .Site.Title }}'>
|
|
|
|
|
<meta property='og:type' content='
|
2020-12-20 11:05:34 +01:00
|
|
|
{{- if .IsPage -}}
|
|
|
|
|
article
|
|
|
|
|
{{- else -}}
|
|
|
|
|
website
|
|
|
|
|
{{- end -}}
|
2020-08-22 13:20:08 +02:00
|
|
|
'>
|
|
|
|
|
|
|
|
|
|
{{- with .Params.locale -}}
|
2020-12-20 11:05:34 +01:00
|
|
|
<meta property='og:locale' content='{{ . }}'>
|
2020-08-22 13:20:08 +02:00
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{- if .IsPage -}}
|
2020-12-20 11:05:34 +01:00
|
|
|
<meta property='article:section' content='{{ .Section | title }}' />
|
|
|
|
|
{{- range .Params.tags -}}
|
|
|
|
|
<meta property='article:tag' content='{{ . }}' />
|
|
|
|
|
{{- end -}}
|
2020-08-22 13:20:08 +02:00
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{- if .IsPage -}}
|
2020-12-20 11:05:34 +01:00
|
|
|
{{- if not .Date.IsZero -}}
|
|
|
|
|
<meta property='article:published_time' content='{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}'/>
|
|
|
|
|
{{- end -}}
|
|
|
|
|
{{- if not .Lastmod.IsZero -}}
|
|
|
|
|
<meta property='article:modified_time' content='{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}'/>
|
|
|
|
|
{{- end -}}
|
2020-08-22 13:20:08 +02:00
|
|
|
{{- else -}}
|
2024-03-10 19:57:03 +01:00
|
|
|
{{- if not .Site.Lastmod.IsZero -}}
|
|
|
|
|
<meta property='og:updated_time' content='{{ .Site.Lastmod.Format " 2006-01-02T15:04:05-07:00 " | safeHTML }}'/>
|
2020-12-20 11:05:34 +01:00
|
|
|
{{- end -}}
|
2020-08-22 13:20:08 +02:00
|
|
|
{{- end -}}
|
|
|
|
|
|
2026-01-25 23:29:41 +01:00
|
|
|
{{ $image := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources) }}
|
|
|
|
|
{{- if $image -}}
|
2020-09-11 21:55:15 +02:00
|
|
|
<meta property='og:image' content='{{ absURL $image.permalink }}' />
|
2020-08-22 13:20:08 +02:00
|
|
|
{{- end -}}
|