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

list.html « post « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23056d866de1e50f09fab3d2ecb9ab44b0b358ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ partial "core/html-start.html" . }}
{{ partial "core/head.html" . }}

<body>
    {{ partial "core/main-menu.html" . }}

    <section class="main-content">
        <div class="masonry-flex-container infinite-scroll">
            {{ if .IsNode }}
                {{ range .Paginator.Pages }}
                    <div class="flex-item">
                        {{ partial "post/page-item.html" . }}
                    </div>
                {{ end }}
            {{ end }}
        </div>
        {{ partial "extra/pagination.html" . }}
    </section>

    {{ partial "core/js.html" . }}
</body>

{{ partial "core/html-end.html" . }}