mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 10:03:30 -05:00 
			
		
		
		
	This reverts commit 81e141cef9.
The footer.md gets rendered at /footer/ which is not intended.
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ partial "credit.html" }}
 | |
| <!DOCTYPE html>
 | |
| <html lang="{{ .Language.Lang }}">
 | |
|     {{ partial "head.html" . }}
 | |
| 
 | |
|     <body>
 | |
|         <a id="top" name="top" aria-hidden="true"></a>
 | |
| 
 | |
|         <div class="top">
 | |
|             {{ partial "top.html" . }}
 | |
|         </div>
 | |
| 
 | |
|         {{ if not .IsHome }}
 | |
|             {{ partial "breadcrumb.html" . }}
 | |
|         {{ end }}
 | |
| 
 | |
|         <main>
 | |
|             {{ block "main" . }}
 | |
|                 {{ .Content }}
 | |
|             {{ end }}
 | |
|         </main>
 | |
| 
 | |
|         {{ if or .Site.Copyright .Site.Params.footer }}
 | |
|             <hr>
 | |
|             <footer>
 | |
|                 <small>
 | |
|                     {{ with .Site.Copyright }}
 | |
|                         <p>{{ . | safeHTML }}</p>
 | |
|                     {{ end }}
 | |
| 
 | |
|                     {{ with .Site.Params.footer }}
 | |
|                         {{ . | $.RenderString (dict "display" "block") }}
 | |
|                     {{ end }}
 | |
|                 </small>
 | |
|             </footer>
 | |
|         {{ end }}
 | |
| 
 | |
|         <a id="back-to-top" href="#top" aria-label="{{ i18n "aria_back_to_top_button" }}">
 | |
|             {{ partial "icon.html" "chevron-up" }}
 | |
|         </a>
 | |
|         <noscript>
 | |
|             <style>
 | |
|                 #back-to-top {
 | |
|                     display: block;
 | |
|                 }
 | |
|             </style>
 | |
|         </noscript>
 | |
|     </body>
 | |
| 
 | |
| </html>
 |