2023-12-04 06:05:41 -05:00
{{- $images := partial "_funcs/get-page-images" . -}}
{{- with index $images 0 -}}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "twitter:image" content = "{{ .Permalink }}" >
2018-05-04 11:53:56 -04:00
{{- else -}}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:card" content = "summary" >
2018-05-04 11:53:56 -04:00
{{- end -}}
2024-04-01 11:07:02 -04: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-16 20:43:11 -04:00
{{- $twitterSite := "" }}
2023-11-01 11:31:15 -04:00
{{- with site.Params.social }}
{{- if reflect.IsMap . }}
2024-03-12 14:16:05 -04:00
{{- with .twitter }}
{{- $content := . }}
{{- if not (strings.HasPrefix . "@") }}
{{- $content = printf "@%v" . }}
{{- end }}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:site" content = "{{ $content }}" >
2024-03-12 14:16:05 -04:00
{{- end }}
2023-11-01 11:31:15 -04:00
{{- end }}
2023-10-16 20:43:11 -04:00
{{- end }}