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

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

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

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

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

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