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>
		
			
				
	
	
		
			20 lines
		
	
	
		
			381 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			381 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
	<div class="container">
 | 
						|
		<div class="row text-center">
 | 
						|
			<div class="col xs-12">
 | 
						|
				<h1>Blog</h1>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="row justify-center">
 | 
						|
			{{ range .Pages }}
 | 
						|
				<div class="col xs-12 sm-9 md-6">
 | 
						|
					<a href="{{ .Permalink }}">
 | 
						|
						{{ partial "cards/app-card.html" .Params }}
 | 
						|
					</a>
 | 
						|
				</div>
 | 
						|
			{{ end }}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
{{ end }}
 |