{{ define "main" }} | |
{{ range sort .Paginator.Pages }} | |
<article class="markdown book-post"> | |
<h3> | |
<a href="{{ .RelPermalink }}">{{ .Title }}</a> | |
</h3> | |
{{ partial "docs/post-meta" . }} | |
<p> | |
{{- .Summary -}} | |
{{ if .Truncated }} | |
<a href="{{ .RelPermalink }}">...</a> | |
{{ end }} | |
</p> | |
<a href="{{ .RelPermalink }}">Continue reading ยป</a> | |
</article> | |
{{ end }} | |
{{ template "_internal/pagination.html" . }} | |
{{ end }} | |
{{ define "toc" }} | |
{{ partial "docs/taxonomy" . }} | |
{{ end }} |