homepage/layouts/_default/list.html

17 lines
245 B
HTML

{{define "main"}}
{{.Content}}
<ul>
{{range .Pages}}
<li>
<a href="{{.Permalink}}">
{{.Title}}
</a>
{{with .Description}}
- {{.}}
{{end}}
</li>
{{end}}
</ul>
{{end}}