hugo-book-theme/layouts/posts/list.html

23 lines
479 B
HTML
Raw Normal View History

2018-11-24 15:14:43 +01:00
{{ define "main" }}
{{ range sort .Paginator.Pages }}
<article class="markdown book-post">
2018-11-24 15:14:43 +01:00
<h2>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
2018-11-24 15:14:43 +01:00
</h2>
2019-12-19 17:22:12 +01:00
{{ partial "docs/post-meta" . }}
<p>
2018-11-25 13:30:25 +01:00
{{- .Summary -}}
2018-11-24 15:14:43 +01:00
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">...</a>
2018-11-24 15:14:43 +01:00
{{ end }}
</p>
</article>
{{ end }}
2019-12-19 17:22:12 +01:00
2018-11-24 15:14:43 +01:00
{{ template "_internal/pagination.html" . }}
2018-11-25 13:30:25 +01:00
{{ end }}
{{ define "toc" }}
2019-12-19 17:22:12 +01:00
{{ partial "docs/taxonomy" . }}
{{ end }}