List
Updated on
Last site update: 8 May 2024
The code from the _default/list.html
page:
1{{ define "main" }}
2 <main class="list-page">
3
4 {{ if or .Title .Content }}
5 <div>
6 {{ with .Title }}<h1>{{ . }}</h1>{{ end }}
7 {{ with .Content }}<div>{{ . }}</div>{{ end }}
8 </div>
9 {{ end }}
10
11 {{ range .Paginator.Pages }}
12 {{ .Render "summary" }}
13 {{ end }}
14 {{ partial "pagination.html" . }}
15 </main>
16{{ partial "sidebar.html" . }}
17{{ end }}