lugo/layouts/_default/list.html

23 lines
506 B
HTML
Raw Normal View History

2022-09-20 21:10:53 +00:00
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}
2023-02-09 21:37:03 +00:00
{{ if not .IsHome }}
2022-05-27 00:46:49 +00:00
<ul>
2022-07-11 18:11:52 +00:00
{{- 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>
2022-09-20 21:10:53 +00:00
{{- end }}
2022-05-27 00:46:49 +00:00
</ul>
2022-09-20 21:10:53 +00:00
{{- end }}
2023-02-09 21:37:03 +00:00
{{ end }}