27 lines
		
	
	
		
			923 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			923 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $page := . }}
 | |
| 
 | |
| {{ $copyright := site.Copyright | markdownify }}
 | |
| {{ $credit := $page.Param "paige.credit.link.hide" | not }}
 | |
| {{ $first := templates.Exists "partials/paige/footer-first.html" }}
 | |
| {{ $last := templates.Exists "partials/paige/footer-last.html" }}
 | |
| 
 | |
| {{ if or $copyright $credit $first $last }}
 | |
|     <footer id="paige-footer">
 | |
|         {{ if $first }}
 | |
|             {{ partial "paige/footer-first.html" . }}
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ with $copyright }}
 | |
|             <p class="{{ if $credit }} mb-0 {{ end }} text-center text-secondary" id="paige-copyright">{{ . }}</p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ if $credit }}
 | |
|             <p class="text-center"><a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige" id="paige-credit">Paige Theme</a></p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ if $last }}
 | |
|             {{ partial "paige/footer-last.html" . }}
 | |
|         {{ end }}
 | |
|     </footer>
 | |
| {{ end }}
 |