11 lines
289 B
HTML
11 lines
289 B
HTML
{{ partial "header.html" . }}
|
|
<h2>{{ .Title }}</h2>
|
|
<div id="content">
|
|
{{ range $index, $page := (.Paginate (where .Site.RegularPages "Type" "in" site.Params.mainSections)).Pages }}
|
|
{{ if ne $index 0 }}
|
|
{{ end }}
|
|
{{ .Render "li" }}
|
|
{{ end }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|