mirror of
				https://github.com/Brandon-Rozek/website-theme.git
				synced 2025-10-31 01:41:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!-- https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/twitter_cards.html -->
 | |
| {{- 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"/>
 | |
| <meta name="twitter:image" content="{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}"/>
 | |
| {{- 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 -}}
 |