2024-04-07 13:03:50 +00:00
{{- /* based on Hugo 0.125.0 _internal/twitter_cardss.html but with modified title */}}
2023-10-11 15:31:27 +00:00
{{- $format := partial "get-format.hugo" . }}
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
{{- $title := .Title }}
{{- if eq $outputFormat "searchpage" }}
2024-02-16 23:39:06 +00:00
{{- $title = T "Search" }}
2023-10-11 15:31:27 +00:00
{{- else if eq .Kind "taxonomy" }}
2024-02-16 23:39:06 +00:00
{{- $title = default (default .Data.Plural (i18n .Data.Plural)) .Params.Title }}
2023-10-11 15:31:27 +00:00
{{- else if eq .Kind "term" }}
2024-02-16 23:39:06 +00:00
{{- $taxonomy_page := .Site.GetPage .Data.Plural }}
{{- $title = default (default .Data.Singular (i18n .Data.Singular)) $taxonomy_page.Params.SingularTitle }}
{{- $title = printf "%s %s %s" (default (humanize .Data.Term | strings.Title) .Title) (default "::" .Site.Params.titleSeparator) $title }}
2023-10-11 15:31:27 +00:00
{{- end }}
{{- if and $title .Site.Title (not (eq $title .Site.Title)) }}
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Site.Title }}
{{- end }}
2024-04-07 13:03:50 +00:00
{{- $images := partial "_funcs/get-page-images" . }}
{{- with index $images 0 }}
2023-10-11 15:31:27 +00:00
< meta name = "twitter:card" content = "summary_large_image" >
2024-04-07 13:03:50 +00:00
< meta name = "twitter:image" content = "{{ .Permalink }}" >
2023-10-11 15:31:27 +00:00
{{- else }}
< meta name = "twitter:card" content = "summary" >
{{- end }}
< 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-20 17:50:14 +00:00
{{- $twitterSite := "" }}
{{- with site.Params.social.twitter }}
{{- $twitterSite = . }}
{{- else }}
{{- with site.Social.twitter }}
{{- $twitterSite = . }}
2023-10-20 18:18:27 +00:00
{{- $hugoVersion := "0.120.0" }}
{{- if ge hugo.Version $hugoVersion }}
{{- warnf "The social key in site configuration is deprecated. Use params.social.twitter instead." }}
{{- end }}
2023-10-20 17:50:14 +00:00
{{- end }}
{{- end }}
{{- with $twitterSite }}
2024-04-07 13:03:50 +00:00
{{- $content := . }}
{{- if not (strings.HasPrefix . "@") }}
{{- $content = printf "@%v" . }}
{{- end }}
< meta name = "twitter:site" content = "{{ $content }}" >
2023-10-11 15:31:27 +00:00
{{- end }}