2023-12-04 11:05:41 +00:00
{{- $images := partial "_funcs/get-page-images" . -}}
{{- with index $images 0 -}}
2024-04-01 15:07:02 +00:00
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "twitter:image" content = "{{ .Permalink }}" >
2018-05-04 15:53:56 +00:00
{{- else -}}
2024-04-01 15:07:02 +00:00
< meta name = "twitter:card" content = "summary" >
2018-05-04 15:53:56 +00:00
{{- end -}}
2024-04-01 15:07:02 +00:00
< meta name = "twitter:title" content = "{{ .Title }}" >
< meta name = "twitter:description" content = "{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end -}}" >
2023-10-17 00:43:11 +00:00
{{- $twitterSite := "" }}
2023-11-01 15:31:15 +00:00
{{- with site.Params.social }}
{{- if reflect.IsMap . }}
2024-03-12 18:16:05 +00:00
{{- with .twitter }}
{{- $content := . }}
{{- if not (strings.HasPrefix . "@") }}
{{- $content = printf "@%v" . }}
{{- end }}
2024-04-01 15:07:02 +00:00
< meta name = "twitter:site" content = "{{ $content }}" >
2024-03-12 18:16:05 +00:00
{{- end }}
2023-11-01 15:31:15 +00:00
{{- end }}
2023-10-17 00:43:11 +00:00
{{- end }}