10 lines
		
	
	
		
			295 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			295 B
		
	
	
	
		
			HTML
		
	
	
	
{{ partial "header.html" . }}
 | 
						|
<h2 class="c-title p-tag-title">{{ .Title }}</h2>
 | 
						|
{{ range $index, $page := (.Paginate (where .Data.Pages "Type" "posts")).Pages }}
 | 
						|
{{ if ne $index 0 }}
 | 
						|
{{ end }}
 | 
						|
{{ .Render "li" }}
 | 
						|
{{ end }}
 | 
						|
{{ partial "pagination.html" .Paginator }}
 | 
						|
{{ partial "footer.html" . }}
 |