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 }}" / >
2018-08-12 14:25:41 -04:00
{{- with .Params.images }}{{ range first 6 . }}
< meta property = "og:image" content = "{{ . | absURL }}" / >
2018-05-04 11:53:56 -04:00
{{ end }}{{ end }}
2018-08-12 14:25:41 -04:00
{{- if .IsPage }}
2018-09-21 18:36:15 -04:00
{{- if not .PublishDate.IsZero }}< meta property = "article:published_time" content = "{{ .PublishDate.Format " 2006-01-02T15:04:05-07:00 " | safeHTMLAttr } } " / >
{{ else if not .Date.IsZero }}< meta property = "article:published_time" content = "{{ .Date.Format " 2006-01-02T15:04:05-07:00 " | safeHTMLAttr } } " / >
2018-08-12 14:25:41 -04:00
{{ end }}
2018-09-21 18:36:15 -04:00
{{- if not .Lastmod.IsZero }}< meta property = "article:modified_time" content = "{{ .Lastmod.Format " 2006-01-02T15:04:05-07:00 " | safeHTMLAttr } } " / > {{ end }}
2018-08-12 14:25:41 -04:00
{{- else }}
{{- if not .Date.IsZero }}
2018-09-21 18:36:15 -04:00
< meta property = "og:updated_time" content = "{{ .Date.Format " 2006-01-02T15:04:05-07:00 " | safeHTMLAttr } } " / >
2018-08-12 14:25:41 -04:00
{{- end }}
{{- end }}{{/* .IsPage */}}
{{- 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 }}
{{- with .Params.videos }}
{{- range . }}
< 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 }}
{{- $siteSeries := .Site.Taxonomies.series }}{{ with .Params.series }}
{{- range $name := . }}
{{- $series := index $siteSeries $name }}
{{- 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 }}
2018-08-12 14:25:41 -04:00
{{- if .IsPage }}
{{- range .Site.Authors }}{{ with .Social.facebook }}
2018-05-04 11:53:56 -04:00
< meta property = "article:author" content = "https://www.facebook.com/{{ . }}" / > {{ end }}{{ with .Site.Social.facebook }}
< meta property = "article:publisher" content = "https://www.facebook.com/{{ . }}" / > {{ end }}
< meta property = "article:section" content = "{{ .Section }}" / >
2018-08-12 14:25:41 -04:00
{{- with .Params.tags }}{{ range first 6 . }}
< meta property = "article:tag" content = "{{ . }}" / > {{ end }}{{ end }}
{{- end }}{{ end }}
2018-05-04 11:53:56 -04:00
2018-08-12 14:25:41 -04:00
{{- /* Facebook Page Admin ID for Domain Insights */}}
2018-09-21 18:36:15 -04:00
{{- with .Site.Social.facebook_admin }}< meta property = "fb:admins" content = "{{ . }}" / > {{ end }}