list.html (550B)
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 20 {{ partial "pagination.html" . }} 21 </section> 22 {{ end }}