15 lines
		
	
	
		
			417 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			417 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ partial "header.html" . }}
 | 
						|
 | 
						|
<div class="header" style="background-color: whitesmoke; opacity: 100%">
 | 
						|
  <h1 style="color: #065387">{{ .Site.Title }}</h1>
 | 
						|
  <h2 style="color: dimgrey">{{ .Site.Params.subtitle }}</h2>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="content">
 | 
						|
    <!-- Note that the content for index.html, as a sort of list page,
 | 
						|
    will pull from content/_index.md -->
 | 
						|
    {{ .Content }}
 | 
						|
</div>
 | 
						|
 | 
						|
{{ partial "footer.html" . }}
 |