18 lines
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ partial "header.html" . }}
 | 
						|
 | 
						|
<div class="header" style="background-color: whitesmoke">
 | 
						|
  <h1>{{ .Title }}</h1>
 | 
						|
  <h2>{{ .Site.Params.subtitle }}</h2>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="content">
 | 
						|
  {{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
 | 
						|
    {{ .Render "summary"}}
 | 
						|
  {{ end }}
 | 
						|
 | 
						|
  {{ partial "pagination.html" . }}
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
{{ partial "footer.html" . }}
 |