lugo/layouts/_default/list.html

18 lines
461 B
HTML
Raw Normal View History

2022-09-20 21:10:53 +00:00
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}
2022-05-27 00:46:49 +00:00
<ul>
2022-07-11 18:11:52 +00:00
{{- range.Pages }}
2022-09-20 21:10:53 +00:00
<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" }}
{{- range .Param "authors" }} by {{ . }}{{ end -}}
{{ end -}}
</li>
{{- end }}
2022-05-27 00:46:49 +00:00
</ul>
2022-09-20 21:10:53 +00:00
{{- end }}