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