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

pagination.html « partials « layouts - github.com/saadnpq/npq-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65e6c92c50613cd8c5e4557861f62d1e4f955391 (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
32
{{ with $.Paginator }}
{{ if gt .TotalPages 1 }}
<ul class="pagination">
  {{ with .Prev }}
  <li class="page-item">
    <a class="page-link" href="{{ .URL }}">
      <i class="fas fa-chevron-left"></i>
    </a>
  </li>
  {{ else }}
  <li class="page-item">
    <a class="grayed-out" href="javascript:void()">
      <i class="fas fa-chevron-left"></i>
    </a>
  </li>
  {{ end }}
  {{ with .Next }}
  <li class="page-item">
    <a class="page-link" href="{{ .URL }}">
      <i class="fas fa-chevron-right"></i>
    </a>
  </li>
  {{ else }}
  <li class="page-item">
    <a class="grayed-out" href="javascript:void()">
      <i class="fas fa-chevron-right"></i>
    </a>
  </li>
  {{ end }}
</ul>
{{ end }}
{{ end }}