2018-11-24 14:14:43 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ range sort .Paginator.Pages }}
|
2019-12-14 12:31:11 +00:00
|
|
|
<article class="markdown book-post">
|
2018-11-24 14:14:43 +00:00
|
|
|
<h2>
|
2021-05-03 20:05:25 +00:00
|
|
|
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
|
2018-11-24 14:14:43 +00:00
|
|
|
</h2>
|
2019-12-19 16:22:12 +00:00
|
|
|
{{ partial "docs/post-meta" . }}
|
2024-10-02 11:25:16 +00:00
|
|
|
<div class="book-post-content">
|
2018-11-25 12:30:25 +00:00
|
|
|
{{- .Summary -}}
|
2018-11-24 14:14:43 +00:00
|
|
|
{{ if .Truncated }}
|
2019-02-20 09:37:48 +00:00
|
|
|
<a href="{{ .RelPermalink }}">...</a>
|
2018-11-24 14:14:43 +00:00
|
|
|
{{ end }}
|
2024-10-02 11:25:16 +00:00
|
|
|
</div>
|
2018-11-24 14:14:43 +00:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
2019-12-19 16:22:12 +00:00
|
|
|
|
2018-11-24 14:14:43 +00:00
|
|
|
{{ template "_internal/pagination.html" . }}
|
2018-11-25 12:30:25 +00:00
|
|
|
{{ end }}
|
2019-09-22 11:15:22 +00:00
|
|
|
|
|
|
|
{{ define "toc" }}
|
2019-12-19 16:22:12 +00:00
|
|
|
{{ partial "docs/taxonomy" . }}
|
2019-09-22 11:15:22 +00:00
|
|
|
{{ end }}
|