Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b02c078a4ec1a1bd10d820daa108ab3b0803907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- Include the head/header -->
{{ partial "header.html" . }}

<!-- Content goes here -->
<div id="content">
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "li" }}
{{ end }}
{{ partial "pagination.html" .Paginator }}
</div>

<!-- Include the site info and footer -->
{{ partial "footer.html" . }}