hugo

configuration files for blog.mrgrouse.com
Log | Files | Refs | README

list.html (501B)


      1 {{ define "title" -}}
      2 {{ .Title | title }}<br><img src=/myblog.gif>
      3 {{- end }}
      4 {{ define "main" -}}
      5 {{ .Content }}
      6 <ul>
      7 {{- range.Pages }}
      8 <li>
      9 	{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; {{ end -}}
     10   <a href="{{ .RelPermalink }}">{{ .Title }}</a>
     11 	{{- if .Param "authorsinlist" }}
     12 	{{ with .Params.authors }}
     13 		by 
     14 		{{ delimit . ", " " and " }}
     15 	{{end}}
     16 	{{ end -}}
     17 </li>
     18 {{- end }}
     19 </ul>
     20 {{- end }}