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

list.html « _default « layouts - github.com/jacobsun/hugo-theme-cole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 373e8bd9574a2f290e74edb0fe2bdfc622e76ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ partial "head.html" . }}

<body>
    {{ partial "header.html" . }}
    <ul class="list control">
        {{ $paginator := .Paginate (where .Pages "Params.hidden" "!=" true) }}
        {{ range $paginator.Pages }}
        <li class="item">
            <span class="date">{{ .PublishDate.Format "01-02" }}</span>
            <a class="btn" href="{{ .Permalink }}"> {{ .Title }} </a>
        </li>
        {{ end }}
    </ul>
    {{ partial "pagination.html" .}}
    {{ partial "footer.html" .}}
    {{ partial "js.html" . }}
</body>

</html>