list.html
1 {{ define "main" }} 2 {{ range sort .Paginator.Pages "PublishDate" "asc" }} 3 <article class="markdown book-post"> 4 <h2> 5 <a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a> 6 </h2> 7 {{ partial "docs/post-meta" . }} 8 <div class="book-post-content"> 9 {{- .Summary -}} 10 {{ if .Truncated }} 11 <a href="{{ .RelPermalink }}">...</a> 12 {{ end }} 13 </div> 14 </article> 15 {{ end }} 16 17 {{ template "_internal/pagination.html" . }} 18 {{ end }} 19 20 {{ define "toc" }} 21 {{ partial "docs/taxonomy" . }} 22 {{ end }}