-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch back to hugo internal twitter-card
- Loading branch information
Showing
2 changed files
with
2 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" . }} |