mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-11-02 09:57:53 -06:00 
			
		
		
		
	It didn't last very long. Speed isn't really a concern currently since my sites all generate in ~50ms (on my computer, at least).
		
			
				
	
	
		
			19 lines
		
	
	
		
			344 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			344 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>
 | 
						|
    </body>
 | 
						|
 | 
						|
</html>
 |