2018-05-04 11:53:56 -04:00
< meta property = "og:title" content = "{{ .Title }}" / >
< meta property = "og:description" content = "{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" / >
< meta property = "og:type" content = "{{ if .IsPage }}article{{ else }}website{{ end }}" / >
< meta property = "og:url" content = "{{ .Permalink }}" / >
2021-02-18 11:51:32 -05:00
2023-12-04 06:05:41 -05:00
{{- $images := partial "_funcs/get-page-images" . -}}
{{- range first 6 $images -}}
< meta property = "og:image" content = "{{ .Permalink }}" / >
2021-02-18 11:51:32 -05:00
{{- end -}}
2018-05-04 11:53:56 -04:00
2018-08-12 14:25:41 -04:00
{{- if .IsPage }}
2021-02-18 11:51:32 -05:00
{{- $iso8601 := "2006-01-02T15:04:05-07:00" -}}
< meta property = "article:section" content = "{{ .Section }}" / >
2021-06-20 15:30:41 -04:00
{{ with .PublishDate }}< meta property = "article:published_time" { { . Format $ iso8601 | printf " content = %q" | safeHTMLAttr } } / > {{ end }}
{{ with .Lastmod }}< meta property = "article:modified_time" { { . Format $ iso8601 | printf " content = %q" | safeHTMLAttr } } / > {{ end }}
2021-02-18 11:51:32 -05:00
{{- end -}}
2018-08-12 14:25:41 -04:00
{{- with .Params.audio }}< meta property = "og:audio" content = "{{ . }}" / > {{ end }}
{{- with .Params.locale }}< meta property = "og:locale" content = "{{ . }}" / > {{ end }}
{{- with .Site.Params.title }}< meta property = "og:site_name" content = "{{ . }}" / > {{ end }}
2021-02-18 11:51:32 -05:00
{{- with .Params.videos }}{{- range . }}
2018-08-12 14:25:41 -04:00
< meta property = "og:video" content = "{{ . | absURL }}" / >
2018-05-04 11:53:56 -04:00
{{ end }}{{ end }}
2018-08-12 14:25:41 -04:00
{{- /* If it is part of a series, link to related articles */}}
{{- $permalink := .Permalink }}
2021-02-18 11:51:32 -05:00
{{- $siteSeries := .Site.Taxonomies.series }}
2022-12-06 04:48:34 -05:00
{{- if $siteSeries }}
2021-02-18 11:51:32 -05:00
{{ with .Params.series }}{{- range $name := . }}
2020-12-16 06:13:30 -05:00
{{- $series := index $siteSeries ($name | urlize) }}
2018-08-12 14:25:41 -04:00
{{- range $page := first 6 $series.Pages }}
{{- if ne $page.Permalink $permalink }}< meta property = "og:see_also" content = "{{ $page.Permalink }}" / > {{ end }}
{{- end }}
2018-05-04 11:53:56 -04:00
{{ end }}{{ end }}
2022-12-06 04:48:34 -05:00
{{- end }}
2018-05-04 11:53:56 -04:00
2023-10-16 20:43:11 -04:00
{{- /* Deprecate site.Social.facebook_admin in favor of site.Params.social.facebook_admin */}}
{{- $facebookAdmin := "" }}
2023-11-01 11:31:15 -04:00
{{- with site.Params.social }}
{{- if reflect.IsMap . }}
{{- $facebookAdmin = .facebook_admin }}
{{- end }}
2023-10-16 20:43:11 -04:00
{{- else }}
{{- with site.Social.facebook_admin }}
{{- $facebookAdmin = . }}
{{- warnf "The social key in site configuration is deprecated. Use params.social.facebook_admin instead." }}
{{- end }}
{{- end }}
2018-08-12 14:25:41 -04:00
{{- /* Facebook Page Admin ID for Domain Insights */}}
2023-10-16 20:43:11 -04:00
{{ with $facebookAdmin }}< meta property = "fb:admins" content = "{{ . }}" / > {{ end }}