2020-10-11 21:04:17 +05:30
{{- if .Params.cover.image -}}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:card" content = "summary_large_image" >
2020-10-11 21:04:17 +05:30
{{- if (ne $.Params.cover.relative true) }}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:image" content = "{{ .Params.cover.image | absURL }}" >
2020-10-11 21:04:17 +05:30
{{- else }}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:image" content = "{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}" >
2020-10-11 21:04:17 +05:30
{{- end}}
2020-10-12 17:26:45 +05:30
{{- else }}
2023-12-04 19:05:41 +08:00
{{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
{{- with index $images 0 -}}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "twitter:image" content = "{{ .Permalink }}" >
2020-10-11 16:31:13 +05:30
{{- else -}}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:card" content = "summary" >
2020-10-11 16:31:13 +05:30
{{- end -}}
2020-10-12 17:26:45 +05:30
{{- end }}
2024-04-01 08:07:02 -07: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 11:16:05 -07:00
2023-11-04 15:05:42 +05:30
{{- $twitterSite := "" }}
2023-11-04 15:08:01 +05:30
{{- with site.Params.social }}
{{- if reflect.IsMap . }}
2024-03-12 11:16:05 -07:00
{{- with .twitter }}
{{- $content := . }}
{{- if not (strings.HasPrefix . "@") }}
{{- $content = printf "@%v" . }}
{{- end }}
2024-04-01 08:07:02 -07:00
< meta name = "twitter:site" content = "{{ $content }}" >
2024-03-12 11:16:05 -07:00
{{- end }}
2023-11-04 15:08:01 +05:30
{{- end }}
2023-11-04 15:05:42 +05:30
{{- end }}