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 }}
|
2022-12-12 04:53:31 +00:00
|
|
|
<li>
|
|
|
|
{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ 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 }}
|