www/layouts/docs/list.html

15 lines
252 B
HTML

{{ define "main" }}
{{ partial "breadcrumbs.html" . }}
{{ with .Content }}
{{ . }}
{{ end }}
<ul>
{{ range .Pages.ByTitle }}
<li><a class="font-125" href="{{ .RelPermalink }}">{{ .Title }}</a> : {{ .Description }}</li>
{{ end }}
</ul>
{{ end }}