69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $page := . }}
 | |
| 
 | |
| {{ $copyright := site.Copyright | markdownify }}
 | |
| {{ $theme := "https://github.com/willfaught/paige" }}
 | |
| {{ $fileediturl := $page.Param "paige.file_edit_url" }}
 | |
| {{ $filehistoryurl := $page.Param "paige.file_history_url" }}
 | |
| 
 | |
| {{ $target := partial "paige/target.html" (dict "page" $page "url" $theme) }}
 | |
| 
 | |
| {{ if $page.File }}
 | |
|     {{ if $fileediturl }}
 | |
|         {{ $fileediturl = printf $fileediturl $page.File.Path }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if $filehistoryurl }}
 | |
|         {{ $filehistoryurl = printf $filehistoryurl $page.File.Path }}
 | |
|     {{ end }}
 | |
| {{ end }}
 | |
| 
 | |
| <footer class="mb-3" id="paige-footer">
 | |
|     {{ if templates.Exists "partials/paige/footer-first.html" }}
 | |
|         {{ partial "paige/footer-first.html" . }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if or $page.PrevInSection $page.NextInSection }}
 | |
|         <div class="mb-3" id="paige-prev-next">
 | |
|             {{ with $page.PrevInSection }}
 | |
|                 <p class="mb-0 text-center text-secondary" id="paige-next">
 | |
|                     <a class="link-secondary" href="{{ .Permalink }}">{{ .Title }}</a> ›
 | |
|                 </p>
 | |
|             {{ end }}
 | |
| 
 | |
|             {{ with $page.NextInSection }}
 | |
|                 <p class="mb-0 text-center text-secondary" id="paige-prev">
 | |
|                     ‹ <a class="link-secondary" href="{{ .Permalink }}">{{ .Title }}</a>
 | |
|                 </p>
 | |
|             {{ end }}
 | |
|         </div>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if and $page.File (or $fileediturl $filehistoryurl) }}
 | |
|     <div class="mb-3" id="paige-file">
 | |
|         {{ if $fileediturl }}
 | |
|             <p class="mb-0 text-center" id="paige-file-edit">
 | |
|                 <a class="link-secondary" href="{{ $fileediturl | safeURL }}">{{ i18n "paige_edit_this_page" }}</a>
 | |
|             </p>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ if $filehistoryurl }}
 | |
|             <p class="mb-0 text-center" id="paige-file-history">
 | |
|                 <a class="link-secondary" href="{{ $filehistoryurl | safeURL }}">{{ i18n "paige_edit_history" }}</a>
 | |
|             </p>
 | |
|         {{ end }}
 | |
|     </div>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ with $copyright }}
 | |
|         <p class="mb-0 text-center text-secondary" id="paige-copyright">{{ . }}</p>
 | |
|     {{ end }}
 | |
| 
 | |
|     <p class="mb-0 text-center" id="paige-credit">
 | |
|         <a class="link-secondary text-decoration-none" href="{{ $theme }}" {{ with $target }} target="{{ . }}" {{ end }}>Paige Theme</a>
 | |
|     </p>
 | |
| 
 | |
|     {{ if templates.Exists "partials/paige/footer-last.html" }}
 | |
|         {{ partial "paige/footer-last.html" . }}
 | |
|     {{ end }}
 | |
| </footer>
 |