themes/hugo-coder/layouts/partials/list.html

bc1bd838b2be90c28895a238d8d752937176c2d0 · 663 B · 22 lines raw

1 <section class="container list">
2 <h1 class="title">
3 <a class="title-link" href="{{ .Permalink | safeURL }}">
4 {{- if eq .Kind "term" -}}
5 {{- i18n .Data.Singular | title -}}
6 {{- print ": " -}}
7 {{- end -}}
8
9 {{- i18n (lower .Title) | default .Title | title -}}
10 </a>
11 </h1>
12 {{ .Content }}
13 <ul>
14 {{ range .Paginator.Pages }}
15 <li>
16 <span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
17 <a class="title" href="{{ .Params.externalLink | default .RelPermalink }}">{{ .Title }}</a>
18 </li>
19 {{ end }}
20 </ul>
21 {{ partial "pagination.html" . }}
22 </section>