www/layouts/docs/list.html

17 lines
280 B
HTML

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