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

list.html « _default « layouts - github.com/syui/hugo-theme-wave.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 328ef8e136482466222e9fecf26362f5947b48f8 (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
25
26
27
28
29
{{ partial "head" . }} {{ partial "header" . }}

<div id="container">
    <div class="outer">
        <section id="main">
            <section class="archives-wrap">
                <div class="archive-category-wrap">
                    <span class="archive-category">{{ .Title }}</span>
                </div>
                <div class="archives">
                    {{ $pages := .Pages }}
                    {{ if .IsHome }}
                    {{ $pages = .Site.RegularPages }}
                    {{ end }}
                    {{ $paginator := .Paginate $pages }}
                    {{ range $paginator.Pages }}
                        {{ .Render "summary" }} 
                    {{ end }}
                </div>
            </section>
            {{ partial "pagination" . }}
        </section>
        {{ partial "sidebar" . }}
    </div>
</div>

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