mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 11:45:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{- if .Params.cover.image -}}
 | |
| <meta name="twitter:card" content="summary_large_image" />
 | |
| {{- if (ne $.Params.cover.relative true) }}
 | |
| <meta name="twitter:image" content="{{ .Params.cover.image | absURL }}" />
 | |
| {{- else }}
 | |
| <meta name="twitter:image" content="{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}" />
 | |
| {{- end}}
 | |
| {{- else }}
 | |
| {{- 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"/>
 | |
| {{- end -}}
 | |
| {{- 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 -}}"/>
 | |
| {{- /* Deprecate site.Social.twitter in favor of site.Params.social.twitter */}}
 | |
| {{- $twitterSite := "" }}
 | |
| {{- with site.Params.social }}
 | |
|   {{- if reflect.IsMap . }}
 | |
|     {{- $twitterSite = .twitter }}
 | |
|   {{- end }}
 | |
| {{- else }}
 | |
|   {{- with site.Social.twitter }}
 | |
|     {{- $twitterSite = . }}
 | |
|     {{- warnf "The social key in site configuration is deprecated. Use params.social.twitter instead." }}
 | |
|   {{- end }}
 | |
| {{- end }}
 | |
| 
 | |
| {{- with $twitterSite }}
 | |
|   {{- $content := . }}
 | |
|   {{- if not (strings.HasPrefix . "@") }}
 | |
|     {{- $content = printf "@%v" $twitterSite }}
 | |
|   {{- end }}
 | |
| <meta name="twitter:site" content="{{ $content }}"/>
 | |
| {{- end }}
 | 
