{{ $iso8601 := "2006-01-02T15:04:05-07:00" -}}
{{- /* Only raster formats every OG consumer supports; SVG is rejected by all of them. */ -}}
{{- $ogFormats := slice "png" "jpeg" -}}
{{- $ogImages := slice -}}
{{- range $.Params.images -}}
{{- with $.Resources.GetMatch . -}}
{{- if in $ogFormats .MediaType.SubType -}}
{{- $ogImages = $ogImages | append (.Resize "960x").Permalink -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- range $.Site.Params.images -}}
{{- with resources.GetMatch . -}}
{{- if in $ogFormats .MediaType.SubType -}}
{{- $ogImages = $ogImages | append (.Resize "960x").Permalink -}}
{{- end -}}
{{- end -}}
{{- end }}
{{ range first 6 $ogImages }}
{{- end }}
{{- if .IsPage }}
{{ with .PublishDate }}
{{ end }}
{{ with .Lastmod }}
{{ end }}
{{- end -}}
{{- with .Params.audio }}
{{ end }}
{{- with .Params.locale }}
{{ end }}
{{- with .Site.Title }}
{{ end }}
{{- with .Params.videos }}
{{- range . }}
{{ end }}
{{ end }}
{{- /* If it is part of a series, link to related articles */}}
{{- $permalink := .Permalink }}
{{- range .GetTerms "series" }}
{{- range first 6 .Pages }}
{{- if ne .Permalink $permalink }}
{{- end }}
{{- end }}
{{- end }}