hugo-book/layouts/posts/list.html

23 lines
530 B
HTML
Raw Normal View History

2018-11-24 14:14:43 +00:00
{{ define "main" }}
{{ range sort .Paginator.Pages }}
<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" . }}
<div class="book-post-content">
2018-11-25 12:30:25 +00:00
{{- .Summary -}}
2018-11-24 14:14:43 +00:00
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">...</a>
2018-11-24 14:14:43 +00:00
{{ end }}
</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 }}
{{ define "toc" }}
2019-12-19 16:22:12 +00:00
{{ partial "docs/taxonomy" . }}
{{ end }}