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

index.html « layouts - github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65d82843dffd7cddb3e26460905a87d1f257d906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ partial "header.html" . }}
<div class="article-list">
  {{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
  {{ range $index, $page := $paginator.Pages }}
    {{ if ne $index 0 }}
      <div class="delimiter"></div>
    {{ end }}
    {{ .Render "li" }}
  {{ end }}
</div>
{{ if (not (eq nil .Paginator)) }}
  {{ partial "pagination.html" .Paginator }}
{{ end }}
{{ partial "footer.html" . }}