Skip to content

Commit

Permalink
switch back to hugo internal twitter-card
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys committed Aug 1, 2020
1 parent 4d06f1b commit c0a15b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
28 changes: 1 addition & 27 deletions layouts/partials/head/microformats.html
Original file line number Diff line number Diff line change
@@ -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" . }}

0 comments on commit c0a15b9

Please sign in to comment.