22 lines
		
	
	
		
			No EOL
		
	
	
		
			391 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			391 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "head"}}
 | 
						|
{{ partial "head.html" . }}
 | 
						|
{{end}}
 | 
						|
 | 
						|
{{define "main"}}
 | 
						|
<!-- Main Page -->
 | 
						|
<div class="singlePage">
 | 
						|
    {{partial "darkmode.html" .}}
 | 
						|
    {{.Content}}
 | 
						|
 | 
						|
    <!-- Contact Info -->
 | 
						|
    <div class="lt-centre">
 | 
						|
        {{partial "footer.html" .}}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{{- with resources.Get "darkmode.js" | minify -}}
 | 
						|
<script>
 | 
						|
  {{.Content | safeJS }}
 | 
						|
</script>
 | 
						|
{{- end -}}
 | 
						|
{{end}} |