switch back to hugo internal twitter-card

This commit is contained in:
Robert Kaussow 2020-08-01 21:17:40 +02:00
parent 4d06f1b0dc
commit c0a15b9c5f
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
2 changed files with 2 additions and 30 deletions

View File

@ -1,4 +1,2 @@
- ENHANCEMENT
- include custom twitter-card metadata and switch to `summary` instead of `summary_large_image`
- INTERNAL
- upgrade CI pipeline to use Hugo v0.74.3
- switch back to Hugo internal twitter-card template

View File

@ -1,28 +1,2 @@
{{ template "_internal/opengraph.html" . }}
<meta name="twitter:card" content="summary"/>
{{- with $.Params.images -}}
<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:image" content="{{ $featured.Permalink }}"/>
{{- else -}}
{{- with $.Site.Params.images -}}
<meta name="twitter:image" content="{{ index . 0 | absURL }}"/>
{{- 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 -}}
{{ template "_internal/twitter_cards.html" . }}