You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			373 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			373 B
		
	
	
	
		
			HTML
		
	
| {{define "head"}}
 | |
| {{ partial "head.html" . }}
 | |
| {{end}}
 | |
| 
 | |
| {{define "main"}}
 | |
| <!-- Main Page -->
 | |
| <div class="singlePage">
 | |
|     {{partial "darkmode.html" .}}
 | |
|     {{.Content}}
 | |
| 
 | |
|     <!-- Contact Info -->
 | |
|     <div>
 | |
|         {{partial "footer.html" .}}
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| {{- with resources.Get "darkmode.js" | minify -}}
 | |
| <script>
 | |
|   {{.Content | safeJS }}
 | |
| </script>
 | |
| {{- end -}}
 | |
| {{end}} |