www/layouts/docs/list.html

16 lines
252 B
HTML
Raw Normal View History

{{ define "main" }}
{{ partial "breadcrumbs.html" . }}
2021-03-23 17:44:02 +01:00
{{ with .Content }}
{{ . }}
{{ end }}
<ul>
{{ range .Pages.ByTitle }}
<li><a class="font-125" href="{{ .RelPermalink }}">{{ .Title }}</a> : {{ .Description }}</li>
{{ end }}
</ul>
{{ end }}