Added all the things. Updated gitignore and README. Removed all the things. Reviewed-by: jeff <jeff@simplesystems.tech>
		
			
				
	
	
		
			30 lines
		
	
	
		
			709 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			709 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<meta charset="utf-8">
 | |
| 		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 | |
| 
 | |
| 		<link rel="stylesheet" href="/icons.css">
 | |
| 		<link rel="stylesheet" href="/simplesystems.css">
 | |
| 		<link rel="stylesheet" href="/light-theme.css">
 | |
| 		<link rel="shortcut icon" href="/favicon.ico">
 | |
| 
 | |
| 		<title>{{ block "title" . }}
 | |
| 		{{ .Site.Title }}
 | |
| 		{{ end }}</title>
 | |
| 	</head>
 | |
| 
 | |
| 	<body>
 | |
| 		{{ partial "navbar/site-navbar.html" . }}
 | |
| 
 | |
| 		<main>
 | |
| 			{{ block "main" . }}
 | |
| 				<!-- The part of the page that begins to differ between templates -->
 | |
| 			{{ end }}
 | |
| 		</main>
 | |
| 
 | |
| 		{{ partial "footer/site-footer.html" . }}
 | |
| 		{{ partial "scripts/scripts.html" . }}
 | |
| 	</body>
 | |
| </html>
 |