www/layouts/docs/list.html

15 lines
239 B
HTML

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