www/layouts/docs/list.html

16 lines
239 B
HTML
Raw Normal View History

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