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

pagination.html « partials « layouts - github.com/jacobsun/hugo-theme-cole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 481321a3b011f09a7e0230efb7fedb7e578bd828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="pagination">
    <ul class="control">
        {{ if .Paginator.HasPrev }}
        <li class="left">
            <a href="{{ .Paginator.Prev.URL }}" class="prev btn">
                    🢨
            </a>
        </li>
        {{ end }}

        {{ if .Paginator.HasNext }}
        <li class="right">
            <a href="{{ .Paginator.Next.URL }}" class="next btn">
                    🢩
            </a>
        </li>
        {{ end }}
    </ul>
</div>