homepage/layouts/_default/list.html
Neale Pickett 422c74f19a
All checks were successful
Homepage / publish (push) Successful in 19s
oops, debug
2024-02-05 20:19:52 -07:00

19 lines
400 B
HTML

{{define "main"}}
{{.Content}}
<ul>
{{range .Pages}}
<li class="{{if .IsNode}}branch{{end}} {{if .Draft}}draft{{end}}">
<a href="{{.Permalink}}">
{{.Title}}
{{ with .Date }}
({{time.Format "2006-Jan-02" .}})
{{ end }}
</a>
{{with .Description}}
- {{.}}
{{end}}
</li>
{{end}}
</ul>
{{end}}