17 lines
		
	
	
		
			757 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			757 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $page := . }}
 | |
| 
 | |
| {{ $authors := cond ($page.Param "paige.page.authors.hide" | not) (partial "paige/func-authors.html" $page) "" }}
 | |
| {{ $authorsclass := $page.Param "paige.page.authors.class" | default "text-center text-secondary" }}
 | |
| {{ $gap := "mb-0" }}
 | |
| {{ $date := cond ($page.Param "paige.page.date.hide" | not) $page.PublishDate "" }}
 | |
| {{ $dateclass := $page.Param "paige.page.date.class" | default "text-center text-secondary" }}
 | |
| 
 | |
| {{ with $authors }}
 | |
|     <p class="{{ if $date }} {{ $gap }} {{ end }} {{ $authorsclass }}">{{ . }}</p>
 | |
| {{ end }}
 | |
| {{ with $date }}
 | |
|     <p class="{{ $dateclass }}">
 | |
|         <time datetime="{{ .Format `2006-01-02` }}">{{ time.Format ($page.Param "paige.page.date.format" | default ":date_long") . }}</time>
 | |
|     </p>
 | |
| {{ end }}
 |