2024-04-25 11:18:40 -04:00
|
|
|
{{- $images := partial "_funcs/get-page-images" . }}
|
|
|
|
{{- with index $images 0 }}
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
<meta name="twitter:image" content="{{ .Permalink }}">
|
|
|
|
{{- else }}
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- with or .Title site.Title site.Params.title | plainify }}
|
|
|
|
<meta name="twitter:title" content="{{ . }}">
|
|
|
|
{{- end }}
|
|
|
|
|
2024-10-12 16:41:42 -04:00
|
|
|
{{- with or .Description .Summary site.Params.description | plainify | htmlUnescape }}
|
|
|
|
<meta name="twitter:description" content="{{ trim . "\n\r\t " }}">
|
2024-04-25 11:18:40 -04:00
|
|
|
{{- 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 }}
|