aboutsummaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_default/list.html
blob: 6a399e7becea8e4fe55b52e8f6e11f10f87c8ed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ define "main" }}
<div class="row">
    <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
        <article>
            <header>Навигатор</header>
            {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
        </article>
    </div>
    <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
        {{ if .Title }}
        <article>
            <header>{{ .Title }}</header>
            {{ .Content }}
        </article>
        {{ end }}
        {{ $paginator := .Paginate .Pages 7 }}
        {{ range $paginator.Pages }}
        {{ partial "list.html" . }}
        {{ end }}
        <nav>{{ partial "pagination.html" . }}</nav>
    </div>
</div>

{{ end }}