mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 03:45:24 +01:00 
			
		
		
		
	 575cc0ca8c
			
		
	
	575cc0ca8c
	
	
	
		
			
			- The site function provides global access to the same data as the .Site page method. - Current context (`.`) is never considered.
		
			
				
	
	
		
			10 lines
		
	
	
		
			316 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			316 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{- if or .Params.author site.Params.author }}
 | |
| {{- $author := (.Params.author | default site.Params.author) }}
 | |
| {{- $author_type := (printf "%T" $author) }}
 | |
| {{- if (or (eq $author_type "[]string") (eq $author_type "[]interface {}")) }}
 | |
| {{- (delimit $author ", " ) }}
 | |
| {{- else }}
 | |
| {{- $author }}
 | |
| {{- end }}
 | |
| {{- end -}}
 |