20 lines
		
	
	
		
			492 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			492 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "title" -}}
 | 
						|
{{ .Title | title }}
 | 
						|
{{- end }}
 | 
						|
{{ define "main" -}}
 | 
						|
{{ .Content }}
 | 
						|
{{ if not .IsHome }}
 | 
						|
<ul>
 | 
						|
{{- range.Pages }}
 | 
						|
	<li>
 | 
						|
		{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}}
 | 
						|
		<a href="{{ .RelPermalink }}">{{ .Title }}</a>
 | 
						|
		{{- if .Param "authorsinlist" }}
 | 
						|
		{{- range .Param "authors" }} by {{ . }}{{ end -}}
 | 
						|
		{{ end -}}
 | 
						|
		</li>
 | 
						|
{{- end }}
 | 
						|
</ul>
 | 
						|
{{- end }}
 | 
						|
{{ end }}
 |