aboutsummaryrefslogtreecommitdiff
path: root/layouts/docs/list.html
blob: 1be5120b79e35aca67e427db5f415d9507424a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}

{{ with .Content }}
{{ . }}
{{ end }}

<ul>
	{{ range .Pages.ByTitle }}
	<li><a class="font-125" href="{{ .RelPermalink }}">{{ .Title }}</a> : {{ .Description }}</li>
	{{ end }}
</ul>

{{ end }}