documentation/layouts/_default/list.html

10 lines
166 B
HTML
Raw Normal View History

2018-09-23 00:14:25 +02:00
{{ define "main" }}
<ul id="posts">
{{ range .Paginator.Pages.ByWeight }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}