mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			526 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			526 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ partial "credit.html" }}
 | |
| <!DOCTYPE html>
 | |
| <html lang="{{ .Language.Lang }}">
 | |
|     {{- partial "head.html" . -}}
 | |
| 
 | |
|     <body>
 | |
|         <div class="top">
 | |
|             {{ partial "top.html" . }}
 | |
|         </div>
 | |
| 
 | |
|         <div class="content">
 | |
|         {{- block "main" . }}
 | |
|         {{ .Content }}
 | |
|         {{- end }}
 | |
|         </div>
 | |
| 
 | |
|         {{ with .Site.Copyright }}
 | |
|         <footer>
 | |
|             <hr>
 | |
|             <small>
 | |
|                 {{ . | safeHTML }}
 | |
|             </small>
 | |
|         </footer>
 | |
|         {{ end }}
 | |
|     </body>
 | |
| 
 | |
| </html>
 |