list.html 166 B

12345678910
  1. {{ define "main" }}
  2. <ul id="posts">
  3. {{ range .Paginator.Pages.ByWeight }}
  4. <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  5. {{ end }}
  6. </ul>
  7. {{ end }}