website/layouts/partials/opengraph/include.html

45 lines
1.6 KiB
HTML
Raw Normal View History

2022-10-14 18:56:56 +00:00
{{- $title := partialCached "data/title" . .RelPermalink -}}
{{- $description := partialCached "data/description" . .RelPermalink -}}
2023-07-10 11:01:05 +00:00
{{/* OpenGraph protocol reference https://ogp.me/ */}}
<meta property="og:title" content="{{ $title }}">
<meta property="og:description" content="{{ $description }}">
<meta property="og:url" content="{{ .Permalink }}">
<meta property="og:site_name" content="{{ .Site.Title }}">
<meta property="og:type" content="
2022-10-14 18:56:56 +00:00
{{- if .IsPage -}}
article
{{- else -}}
website
{{- end -}}
2023-07-10 11:01:05 +00:00
">
2022-10-14 18:56:56 +00:00
<meta property='og:locale' content='{{ .Site.LanguageCode }}'>
{{- if .IsPage -}}
<meta property='article:section' content='{{ .Section | title }}' />
{{- range .Params.tags -}}
<meta property='article:tag' content='{{ . }}' />
{{- end -}}
{{- end -}}
{{- if .IsPage -}}
{{- if not .Date.IsZero -}}
2023-07-10 11:01:05 +00:00
<meta property="article:published_time" content="{{- .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML -}}" />
2022-10-14 18:56:56 +00:00
{{- end -}}
{{- if not .Lastmod.IsZero -}}
2023-07-10 11:01:05 +00:00
<meta property="article:modified_time" content="{{- .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML -}}" />
2022-10-14 18:56:56 +00:00
{{- end -}}
{{- else -}}
2023-07-10 11:01:05 +00:00
{{ if not .Site.LastChange.IsZero }}
<meta property="og:updated_time" content="{{- .Site.LastChange.Format "2006-01-02T15:04:05-07:00" | safeHTML -}}" />
2022-10-14 18:56:56 +00:00
{{- end -}}
{{- end -}}
{{ $image := partialCached "helpers/image" (dict "Context" . "Type" "opengraph") .RelPermalink "opengraph" }}
2023-07-10 11:01:05 +00:00
{{ if $image.exists }}
<meta property='og:image' content='{{ absURL $image.permalink }}' />
2022-10-14 18:56:56 +00:00
{{- end -}}