22 lines
		
	
	
		
			730 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			730 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <h1>{{ .Title }}</h1>
 | |
|   {{ .Content }}
 | |
|   <div class="pagination">
 | |
|       {{ template "_internal/pagination.html" . }}
 | |
|   </div>
 | |
|   {{ range .Paginator.Pages.ByPublishDate.Reverse }}
 | |
|       {{ if .Params.context }}
 | |
|           {{ $url := urls.Parse .Params.context.url }}
 | |
|           <h2><a href="{{ $url.String }}">{{ .LinkTitle }}</a></h2>
 | |
|           <p class="context">(<a href="{{ .RelPermalink }}">Permalink</a>)</p>
 | |
|       {{ else }}
 | |
|       <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
 | |
|       {{ end }}
 | |
|       {{ .Summary }}
 | |
|       {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
 | |
|   {{ end }}
 | |
|   <div class="pagination">
 | |
|       {{ template "_internal/pagination.html" . }}
 | |
|   </div>
 | |
| {{ end }}
 |