2020-10-11 17:34:17 +02:00
{{- if .Params.cover.image -}}
< meta name = "twitter:card" content = "summary_large_image" / >
{{- if (ne $.Params.cover.relative true) }}
< meta name = "twitter:image" content = "{{ .Params.cover.image | absURL }}" / >
{{- else }}
< meta name = "twitter:image" content = "{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}" / >
{{- end}}
2020-10-12 13:56:45 +02:00
{{- else }}
2020-10-11 13:01:13 +02:00
{{- with $.Params.images -}}
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ index . 0 | absURL }}" / >
{{ else -}}
{{- $images := $.Resources.ByType "image" -}}
{{- $featured := $images.GetMatch "*feature*" -}}
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
{{- with $featured -}}
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ $featured.Permalink }}" / >
{{- else -}}
2022-03-27 15:14:06 +02:00
{{- with site.Params.images -}}
2020-10-11 13:01:13 +02:00
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ index . 0 | absURL }}" / >
{{ else -}}
< meta name = "twitter:card" content = "summary" / >
{{- end -}}
{{- end -}}
{{- end }}
2020-10-12 13:56:45 +02:00
{{- end }}
2020-10-11 13:01:13 +02:00
< meta name = "twitter:title" content = "{{ .Title }}" / >
2022-03-27 15:14:06 +02:00
< meta name = "twitter:description" content = "{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end -}}" / >
2023-11-04 10:35:42 +01:00
{{- /* Deprecate site.Social.twitter in favor of site.Params.social.twitter */}}
{{- $twitterSite := "" }}
2023-11-04 10:38:01 +01:00
{{- with site.Params.social }}
{{- if reflect.IsMap . }}
{{- $twitterSite = .twitter }}
{{- end }}
2023-11-04 10:35:42 +01:00
{{- else }}
{{- with site.Social.twitter }}
{{- $twitterSite = . }}
{{- warnf "The social key in site configuration is deprecated. Use params.social.twitter instead." }}
{{- end }}
{{- end }}
{{- with $twitterSite }}
2023-11-04 10:38:01 +01:00
{{- $content := . }}
{{- if not (strings.HasPrefix . "@") }}
{{- $content = printf "@%v" $twitterSite }}
{{- end }}
< meta name = "twitter:site" content = "{{ $content }}" / >
2023-11-04 10:35:42 +01:00
{{- end }}