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

pagination.html « partials « layouts - github.com/vaga/hugo-theme-m10c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be6fa11f7ca3156d7acfbe2c930c25355c0fa3a4 (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
{{ with $.Paginator }}
{{ if gt .TotalPages 1 }}
<ul class="pagination">
  {{ with .Prev }}
  <li class="page-item">
    <a class="page-link" href="{{ .URL }}">
      {{ partial "icon.html" (dict "ctx" $ "name" "arrow-left") }}
    </a>
  </li>
  {{ end }}
  {{ range .Pagers }}
  <li class="page-item{{ if eq .PageNumber $.Paginator.PageNumber }} active{{ end }}">
    <a class="page-link" href="{{ .URL }}">
      {{ .PageNumber }}
    </a>
  </li>
  {{ end }}
  {{ with .Next }}
  <li class="page-item">
    <a class="page-link" href="{{ .URL }}">
      {{ partial "icon.html" (dict "ctx" $ "name" "arrow-right") }}
    </a>
  </li>
  {{ end }}
</ul>
{{ end }}
{{ end }}