mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-22 05:00:39 +00:00
switch back to hugo internal twitter-card
This commit is contained in:
parent
4d06f1b0dc
commit
c0a15b9c5f
@ -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
|
||||
|
@ -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" . }}
|
||||
|
Loading…
Reference in New Issue
Block a user