blog/themes/chosto/layouts/term/list.html

16 lines
381 B
HTML

{{ define "main" }}
<main>
<article>
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{ .Content }}
</article>
<ul>
<!-- Ranges through the term pages -->
{{ range .Paginator.Pages }}
{{- partial "listitem.html" . -}}
{{ end }}
</ul>
{{- partial "pagination.html" . -}}
</main>
{{ end }}