2020-10-11 11:34:17 -04:00
{{- if .Params.cover.image -}}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:card" content = "summary_large_image" >
2020-10-11 11:34:17 -04:00
{{- if (ne $.Params.cover.relative true) }}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:image" content = "{{ .Params.cover.image | absURL }}" >
2020-10-11 11:34:17 -04:00
{{- else }}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:image" content = "{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}" >
2020-10-11 11:34:17 -04:00
{{- end}}
2020-10-12 07:56:45 -04:00
{{- else }}
2023-12-04 06:05:41 -05:00
{{- $images := partial "partials/templates/_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 }}" >
2020-10-11 07:01:13 -04:00
{{- else -}}
2024-04-01 11:07:02 -04:00
< meta name = "twitter:card" content = "summary" >
2020-10-11 07:01:13 -04:00
{{- end -}}
2020-10-12 07:56:45 -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 -}}" >
2024-03-12 14:16:05 -04:00
2023-11-04 05:35:42 -04:00
{{- $twitterSite := "" }}
2023-11-04 05:38:01 -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-04 05:38:01 -04:00
{{- end }}
2023-11-04 05:35:42 -04:00
{{- end }}