homepage/layouts/_default/list.html

17 lines
245 B
HTML
Raw Normal View History

2022-09-04 16:59:13 -06:00
{{define "main"}}
{{.Content}}
<ul>
{{range .Pages}}
<li>
<a href="{{.Permalink}}">
{{.Title}}
</a>
{{with .Description}}
- {{.}}
{{end}}
</li>
{{end}}
</ul>
{{end}}