You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
500 B
HTML
23 lines
500 B
HTML
1 year ago
|
{{ define "main" }}
|
||
|
{{ range sort .Paginator.Pages }}
|
||
|
<article class="markdown book-post">
|
||
|
<h2>
|
||
|
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
|
||
|
</h2>
|
||
|
{{ partial "docs/post-meta" . }}
|
||
|
<p>
|
||
|
{{- .Summary -}}
|
||
|
{{ if .Truncated }}
|
||
|
<a href="{{ .RelPermalink }}">...</a>
|
||
|
{{ end }}
|
||
|
</p>
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ template "_internal/pagination.html" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "toc" }}
|
||
|
{{ partial "docs/taxonomy" . }}
|
||
|
{{ end }}
|