22 lines
		
	
	
		
			760 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			760 B
		
	
	
	
		
			HTML
		
	
	
<!-- https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started -->
 | 
						|
<!-- https://cards-dev.twitter.com/validator -->
 | 
						|
<!-- https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/twitter_cards.html -->
 | 
						|
{{- $ := index . "$" -}}
 | 
						|
<!-- Author -->
 | 
						|
{{- $author := partial "utils/author.html" $ -}}
 | 
						|
<!-- Images -->
 | 
						|
{{- $images := partial "utils/images.html" $ -}}
 | 
						|
 | 
						|
{{- with $images -}}
 | 
						|
    <meta name="twitter:card" content="summary_large_image" />
 | 
						|
{{ else -}}
 | 
						|
    <meta name="twitter:card" content="summary" />
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{ with $.Site.Params.siteTwitter -}}
 | 
						|
    <meta name="twitter:site" content="@{{ . }}" />
 | 
						|
{{ end -}}
 | 
						|
{{ with $author.twitter -}}
 | 
						|
    <meta name="twitter:creator" content="@{{ . }}" />
 | 
						|
{{ end -}}
 |