simpletheme/layouts/_default/list.html
J S 06eba57815 feat[layouts/ static/]: Added search functionality
Ripped off the onion theme from heracl.es
2023-10-15 00:17:04 -04:00

20 lines
422 B
HTML

{{ define "main" -}}
{{ .Content }}
<ul>
{{- range.Pages }}
<li>
{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; {{ end -}}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- if .Param "authorsinlist" }}
{{ with .Params.authors }}
by
{{ delimit . ", " " and " }}
{{end}}
{{ end -}}
</li>
{{- end }}
</ul>
{{- end }}