2024-04-07 13:12:46 +00:00
|
|
|
{{- /* based on Hugo 0.125.0 _internal/opengraph.html but with modified title */}}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- $format := partial "get-format.hugo" . }}
|
|
|
|
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
|
2023-10-11 15:41:04 +00:00
|
|
|
{{- $basename := "index" }}
|
|
|
|
{{- if eq $outputFormat "searchpage" }}
|
|
|
|
{{- $basename = partial "BaseName.hugo" $format.RelPermalink }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2023-10-11 15:41:04 +00:00
|
|
|
<meta property="og:url" content="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" . "abs" true "basename" $basename) }}">
|
2024-04-07 13:12:46 +00:00
|
|
|
|
|
|
|
{{- with or site.Title site.Params.title | plainify }}
|
|
|
|
<meta property="og:site_name" content="{{ . }}">
|
|
|
|
{{- end }}
|
2024-04-07 19:41:06 +00:00
|
|
|
<meta property="og:title" content="{{ partial "pageHelper/fullTitle.hugo" (dict "page" . "invert" true "format" $format "outputFormat" $outputFormat) | plainify }}">
|
2024-04-07 13:12:46 +00:00
|
|
|
|
|
|
|
{{- with or .Description .Summary site.Params.description | plainify }}
|
|
|
|
<meta property="og:description" content="{{ . }}">
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- with or .Params.locale site.Language.LanguageCode site.Language.Lang }}
|
|
|
|
<meta property="og:locale" content="{{ . }}">
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-02-16 23:39:06 +00:00
|
|
|
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- if .IsPage }}
|
2024-04-07 13:12:46 +00:00
|
|
|
<meta property="og:type" content="article">
|
|
|
|
{{- with .FirstSection }}
|
2024-04-07 19:41:06 +00:00
|
|
|
<meta property="article:section" content="{{ partial "pageHelper/fullTitle.hugo" (dict "page" . "invert" true "format" $format "outputFormat" $outputFormat) | plainify }}">
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- end }}
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- $iso8601 := "2006-01-02T15:04:05-07:00" }}
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- with .PublishDate }}
|
|
|
|
<meta property="article:published_time" {{ .Format $iso8601 | printf "content=%q" | safeHTMLAttr }}>
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Lastmod }}
|
2023-10-11 15:31:27 +00:00
|
|
|
<meta property="article:modified_time" {{ .Format $iso8601 | printf "content=%q" | safeHTMLAttr }}>
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- end }}
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- range .GetTerms "tags" | first 6 }}
|
|
|
|
<meta property="article:tag" content="{{ .Page.Title | plainify }}">
|
|
|
|
{{- end }}
|
|
|
|
{{- else }}
|
|
|
|
<meta property="og:type" content="website">
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-02-16 23:39:06 +00:00
|
|
|
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- with partial "_funcs/get-page-images" . }}
|
|
|
|
{{- range . | first 6 }}
|
|
|
|
<meta property="og:image" content="{{ .Permalink }}">
|
|
|
|
{{- end }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-04-07 13:12:46 +00:00
|
|
|
|
|
|
|
{{- with .Params.audio }}
|
|
|
|
{{- range . | first 6 }}
|
|
|
|
<meta property="og:audio" content="{{ . | absURL }}">
|
|
|
|
{{- end }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-04-07 13:12:46 +00:00
|
|
|
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- with .Params.videos }}
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- range . | first 6 }}
|
2023-10-11 15:31:27 +00:00
|
|
|
<meta property="og:video" content="{{ . | absURL }}">
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- end }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-02-16 23:39:06 +00:00
|
|
|
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- range .GetTerms "series" }}
|
|
|
|
{{- range .Pages | first 7 }}
|
|
|
|
{{- if ne $ . }}
|
|
|
|
<meta property="og:see_also" content="{{ .Permalink }}">
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- $facebookApp := "" }}
|
|
|
|
{{- with site.Params.social }}
|
|
|
|
{{- if reflect.IsMap . }}
|
|
|
|
{{- with .facebook_app_id }}
|
|
|
|
{{- $facebookApp = . }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- end }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|
2023-10-20 17:50:14 +00:00
|
|
|
|
|
|
|
{{- $facebookAdmin := "" }}
|
|
|
|
{{- with site.Params.social.facebook_admin }}
|
|
|
|
{{- $facebookAdmin = . }}
|
|
|
|
{{- else }}
|
|
|
|
{{- with site.Social.facebook_admin }}
|
|
|
|
{{- $facebookAdmin = . }}
|
2023-10-20 18:18:27 +00:00
|
|
|
{{- $hugoVersion := "0.120.0" }}
|
|
|
|
{{- if ge hugo.Version $hugoVersion }}
|
2024-02-16 23:39:06 +00:00
|
|
|
{{- warnf "The social key in site configuration is deprecated. Use params.social.facebook_admin instead." }}
|
2023-10-20 18:18:27 +00:00
|
|
|
{{- end }}
|
2023-10-20 17:50:14 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- with $facebookApp }}
|
|
|
|
<meta property="fb:app_id" content="{{ . }}">
|
|
|
|
{{- else }}
|
|
|
|
{{- with $facebookAdmin }}
|
2023-10-11 15:31:27 +00:00
|
|
|
<meta property="fb:admins" content="{{ . }}">
|
2024-04-07 13:12:46 +00:00
|
|
|
{{- end }}
|
2023-10-11 15:31:27 +00:00
|
|
|
{{- end }}
|