2018-03-01 01:38:59 +00:00
|
|
|
<section class="container list">
|
2018-10-27 12:43:26 +00:00
|
|
|
<h1 class="title">
|
|
|
|
{{- if eq .Kind "taxonomy" -}}
|
2019-02-09 14:36:32 +00:00
|
|
|
{{- i18n .Data.Singular | title -}}
|
2018-10-27 12:43:26 +00:00
|
|
|
{{- print ": " -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- .Title -}}
|
|
|
|
</h1>
|
2018-03-01 01:38:59 +00:00
|
|
|
<ul>
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
<li>
|
2019-01-16 15:16:24 +00:00
|
|
|
<span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
|
|
|
|
<a class="title" href="{{ .URL }}">{{ .Title }}</a>
|
2018-03-01 01:38:59 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
</section>
|