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: dbbbb8bf3330e49efac4379efd0de6c19d87f004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- Include the head/header -->
{{ partial "header.html" . }}

<!-- Content goes here -->
{{ range $index, $page := (.Paginate (where (where .Data.Pages "Type" "post") ".Params.hidden" "!=" "true" )).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "li" }}
{{ end }}
{{ partial "pagination.html" .Paginator }}

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