themes/hugo-coder/layouts/partials/list.html
b820c90569622c3093532593cf5506973ec2d384
· 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> |