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

list.html « _default « layouts - github.com/varkai/hugo-theme-zozo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a436e287a51ae89a1e9eaa314097a96f389cf0fd (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
30
31
{{ partial "head.html" . }}

<body>
    <div class="main animate__animated animate__fadeInDown">
        {{ partial "nav.html" . }}
        {{ partial "header.html" . }}
        <div class="content">
            <div class="list_with_title">
                {{ range .Data.Pages.GroupByDate "2006" }}
                <div class="listing_title">{{ .Key }}</div>
                <div class="listing">
                    {{ range .Pages }}
                    <div class="listing_item">
                        <div class="listing_post">
                            <a href="{{ .RelPermalink }}">{{ .Title }}</a>
                            <div class="post_time"><span class="date">{{ .Date.Format "01-02" }}</span></div>
                        </div>
                    </div>
                    {{ end }}
                </div>
                {{ end }}
            </div>
            <div class="pagination"></div>
        </div>
        <a id="back_to_top" href="#" class="back_to_top"><i class="ri-arrow-up-s-line"></i></a>
    </div>
    {{ partial "footer.html" . }}
    {{ partial "js.html" . }}
</body>

</html>