21 lines
481 B
HTML
21 lines
481 B
HTML
{{ define "content" }}
|
|
<section class="container list">
|
|
<h1 class="title">
|
|
{{- if eq .Kind "taxonomy" -}}
|
|
{{- .Data.Singular | title -}}
|
|
{{- print ": " -}}
|
|
{{- end -}}
|
|
|
|
{{- .Title -}}
|
|
</h1>
|
|
{{ range .Paginator.Pages }}
|
|
<div class="pure-g">
|
|
<div class="pure-u-1">
|
|
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</section>
|
|
{{ end }}
|