list.html 550 B

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