website/layouts/partials/metas/opengraph.html

45 lines
1.6 KiB
HTML
Raw Permalink 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 | absURL }}">
2023-07-10 11:01:05 +00:00
<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
2023-07-10 15:02:28 +00:00
<meta property="og:locale" content="{{ .Site.LanguageCode }}">
2022-10-14 18:56:56 +00:00
{{- if .IsPage -}}
2023-07-10 15:02:28 +00:00
<meta property="article:section" content="{{ .Section | title }}" />
2022-10-14 18:56:56 +00:00
{{- range .Params.tags -}}
2023-07-10 15:02:28 +00:00
<meta property="article:tag" content="{{ . }}" />
2022-10-14 18:56:56 +00:00
{{- end -}}
{{- end -}}
2022-10-14 18:56:56 +00:00
{{- if .IsPage -}}
2022-10-14 18:56:56 +00:00
{{- 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 -}}
{{ if not .Site.Lastmod.IsZero }}
<meta property="og:updated_time" content="{{- .Site.Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML -}}" />
2022-10-14 18:56:56 +00:00
{{- end -}}
{{- end -}}
2022-10-14 18:56:56 +00:00
{{ $image := partial "helpers/image" (dict "Context" . "Type" "opengraph") .RelPermalink "opengraph" }}
2023-07-10 11:01:05 +00:00
{{ if $image.exists }}
<meta property="og:image" content="{{ $image.permalink | absURL }}" />
2022-10-14 18:56:56 +00:00
{{- end -}}