themes/hugo-coder/layouts/posts/list.html
5a25c726c810b01998ecd51d15227e464c36a34c
· 523 B · 21 lines
raw
| 1 | {{ define "title" }} |
| 2 | {{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }} |
| 3 | {{ end }} |
| 4 | {{ define "content" }} |
| 5 | <section class="container list"> |
| 6 | <h1 class="title"> |
| 7 | <a class="title-link" href="{{ .Permalink | safeURL }}"> |
| 8 | {{ title (i18n (lower .Title)) | default .Title }} |
| 9 | </a> |
| 10 | </h1> |
| 11 | {{ .Content }} |
| 12 | <ul> |
| 13 | e |
| 14 | {{- range .Paginator.Pages -}} |
| 15 | {{- .Render "li" -}} |
| 16 | {{- end -}} |
| 17 | </ul> |
| 18 | |
| 19 | {{ partial "pagination.html" . }} |
| 20 | </section> |
| 21 | {{ end }} |