2020-02-26 06:00:39 -05:00
<!-- https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/twitter_cards.html -->
{{- with $.Params.images -}}
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ index . 0 | absURL }}" / >
{{ else -}}
{{- $images := $.Resources.ByType "image" -}}
{{- $featured := $images.GetMatch "*feature*" -}}
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
{{- with $featured -}}
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ $featured.Permalink }}" / >
{{- else -}}
{{- with $.Site.Params.images -}}
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:image" content = "{{ index . 0 | absURL }}" / >
{{ else -}}
< meta name = "twitter:card" content = "summary" / >
2020-12-22 10:20:17 -05:00
< meta name = "twitter:image" content = "{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}" / >
2020-02-26 06:00:39 -05:00
{{- end -}}
{{- end -}}
{{- 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 -}}" / >
{{ with .Site.Social.twitter -}}
< meta name = "twitter:site" content = "@{{ . }}" / >
{{ end -}}
{{ range .Site.Authors }}
{{ with .twitter -}}
< meta name = "twitter:creator" content = "@{{ . }}" / >
{{ end -}}
{{ end -}}