Disable taxonomy types. Put the simple software data in the home page content file. Navbar can be cached. Make the CSS assets and bundle the global CSS. Can cache the scripts and the footer. Global CSS and JS partials. These don't make any sense. Fix baseof titling. Move navbar and footer out of directories where they are the only files, update base template. Reviewed-by: jeff <jeff@simplesystems.tech>
		
			
				
	
	
		
			24 lines
		
	
	
		
			550 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			550 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<meta charset="utf-8">
 | 
						|
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 | 
						|
 | 
						|
		{{ partialCached "css-global.html" . }}
 | 
						|
		<link rel="shortcut icon" href="/favicon.ico">
 | 
						|
 | 
						|
		<title>{{ .Site.Title }} {{ block "title" . }} {{ with .Title }} | {{ . }} {{ end }} {{ end }}</title>
 | 
						|
	</head>
 | 
						|
 | 
						|
	<body>
 | 
						|
		{{ partialCached "navbar.html" . }}
 | 
						|
 | 
						|
		<main>
 | 
						|
			{{ block "main" . }} {{ end }}
 | 
						|
		</main>
 | 
						|
 | 
						|
		{{ partialCached "footer.html" . }}
 | 
						|
		{{ partialCached "js-global.html" . }}
 | 
						|
	</body>
 | 
						|
</html>
 |