{{- if .Params.cover.image -}}
{{- if (ne $.Params.cover.relative true) }}
{{- else }}
{{- end}}
{{- else }}
{{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
{{- with index $images 0 -}}
{{- else -}}
{{- end -}}
{{- end }}
{{- /* Deprecate site.Social.twitter in favor of site.Params.social.twitter */}}
{{- $twitterSite := "" }}
{{- with site.Params.social }}
  {{- if reflect.IsMap . }}
    {{- $twitterSite = .twitter }}
  {{- end }}
{{- else }}
  {{- with site.Social.twitter }}
    {{- $twitterSite = . }}
    {{- warnf "The social key in site configuration is deprecated. Use params.social.twitter instead." }}
  {{- end }}
{{- end }}
{{- with $twitterSite }}
  {{- $content := . }}
  {{- if not (strings.HasPrefix . "@") }}
    {{- $content = printf "@%v" $twitterSite }}
  {{- end }}
{{- end }}