mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-10-28 23:22:30 +01:00 
			
		
		
		
	 575cc0ca8c
			
		
	
	575cc0ca8c
	
	
	
		
			
			- The site function provides global access to the same data as the .Site page method. - Current context (`.`) is never considered.
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.4 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 -}}"/>
 | |
| {{ with site.Social.twitter -}}
 | |
| <meta name="twitter:site" content="@{{ . }}"/>
 | |
| {{ end -}}
 |