37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $page := . }}
 | |
| 
 | |
| {{ $copyright := site.Copyright | markdownify | and ($page.Param "paige.site.disable_copyright" | not) }}
 | |
| {{ $credit := $page.Param "paige.site.credit" }}
 | |
| {{ $first := templates.Exists "partials/paige/site-footer-first.html" }}
 | |
| {{ $last := templates.Exists "partials/paige/site-footer-last.html" }}
 | |
| {{ $license := $page.Param "paige.site.license" | markdownify | and ($page.Param "paige.site.disable_license" | not) }}
 | |
| {{ $microdata := $page.Params.paige.pages.microdata }}
 | |
| 
 | |
| {{ if $credit }}
 | |
|     {{ $credit = markdownify $credit }}
 | |
| {{ else }}
 | |
|     {{ $credit = `<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>` | safeHTML }}
 | |
| {{ end }}
 | |
| 
 | |
| {{ $credit = $credit | and ($page.Param "paige.site.disable_credit" | not) }}
 | |
| 
 | |
| {{ if or $copyright $credit $first $last $license }}
 | |
|     <footer id="paige-site-footer">
 | |
|         {{ partial "paige/func-include.html" (dict "name" "site-footer-first%s.html" "page" $page) | safeHTML }}
 | |
| 
 | |
|         {{ with $copyright }}
 | |
|             <p class="paige-row-short text-center text-secondary" id="paige-site-copyright" {{ if $microdata }} itemprop="copyrightNotice" {{ end }}>{{ . }}</p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ with $license }}
 | |
|             <p class="paige-row-short text-center text-secondary" id="paige-site-license">{{ . }}</p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ with $credit }}
 | |
|             <p class="paige-row-short text-center text-secondary" id="paige-site-credit">{{ . }}</p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ partial "paige/func-include.html" (dict "name" "site-footer-last%s.html" "page" $page) | safeHTML }}
 | |
|     </footer>
 | |
| {{ end }}
 |