list.html (457B)
1 {{ define "title" -}} 2 {{ .Title | title }} 3 {{- end }} 4 {{ define "main" -}} 5 {{ .Content }} 6 {{ $url := trim .Page.RelPermalink "/" }} 7 <ul> 8 {{- range.Pages }} 9 {{ if not (and $.IsHome (eq .Name "About me")) }} 10 <li> 11 {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}} 12 <a href="{{ .RelPermalink }}">{{ .Title }}</a> 13 </li> 14 {{ end }} 15 {{- end }} 16 </ul> 17 {{- end }}