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

mobile-paginator.html « partials « layouts - github.com/AmazingRise/hugo-theme-diary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 103f81b68a08fb9873236864ededf6aea5c53e65 (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
{{ if and (.Paginator) (not (.Data.Terms)) }}
{{ if gt .Paginator.TotalPages 1 }}
<div class="pagination">
    {{ if .Paginator.HasPrev }}
    <a class="pagination-action" href="{{.Paginator.Prev.URL}}" style="opacity:1">
    {{ else }}
    <a class="pagination-action" style="opacity:0">
    {{ end }}
        <i class="material-icons pagination-action-icon">
            chevron_left
        </i>
    </a>

        <div class="pagination-indicator">
            <span>{{.Paginator.PageNumber}}/{{.Paginator.TotalPages}}</span>
        </div>

        {{ if .Paginator.HasNext }}
        <a class="pagination-action" href="{{.Paginator.Next.URL}}"
           style="opacity:1">
        {{ else }}
            <a class="pagination-action" style="opacity:0">
        {{ end }}
                <i class="material-icons pagination-action-icon">
                    chevron_right
                </i>
            </a>
</div>
{{ end }}

{{ end }}