hugo-book/layouts/taxonomy/taxonomy.html

23 lines
500 B
HTML
Raw Normal View History

2019-12-19 16:22:12 +00:00
{{ define "main" }}
{{ range sort .Paginator.Pages }}
<article class="markdown book-post">
<h2>
2021-05-03 20:05:25 +00:00
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
2019-12-19 16:22:12 +00:00
</h2>
{{ partial "docs/post-meta" . }}
<p>
{{- .Summary -}}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">...</a>
2019-12-19 16:22:12 +00:00
{{ end }}
</p>
</article>
{{ end }}
2019-12-19 16:22:12 +00:00
{{ template "_internal/pagination.html" . }}
{{ end }}
{{ define "toc" }}
{{ partial "docs/taxonomy" . }}
{{ end }}