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