summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/partials/pagination.html
blob: c5233132e5a5a33da46f0b16d1b49654f1d5cdbf (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{- if gt .Paginator.TotalPages 1 -}}
  <ul class="flex flex-row mt-8 justify-center">
    {{- .Scratch.Set "paginator.ellipsed" false -}}
    {{ if $.Paginator.HasPrev }}
    <li>
      <a
          href="{{ $.Paginator.Prev.URL }}"
          class="mx-1 block min-w-[1.8rem] rounded text-center hover:bg-primary-600 hover:text-neutral"
          rel="prev"
      >&larr;</a>
    </li>
    {{ end }}
    {{- range $.Paginator.Pagers -}}
      {{- $right := sub .TotalPages .PageNumber -}}
      {{- $showNumber := or (le .PageNumber 1) (eq $right 0) -}}
      {{- $showNumber := or $showNumber (and (gt .PageNumber (sub $.Paginator.PageNumber 3)) (lt .PageNumber (add $.Paginator.PageNumber 3))) -}}
      {{- if $showNumber -}}
        {{- $.Scratch.Set "paginator.ellipsed" false -}}
        {{- $.Scratch.Set "paginator.shouldEllipse" false -}}
      {{- else -}}
        {{- $.Scratch.Set "paginator.shouldEllipse" (not ($.Scratch.Get "paginator.ellipsed") ) -}}
        {{- $.Scratch.Set "paginator.ellipsed" true -}}
      {{- end -}}
      {{- if $showNumber -}}
        <li>
          <a
              href="{{ .URL }}"
              class="{{ if eq . $.Paginator }}
          bg-primary-200 dark:bg-primary-400 dark:text-neutral-800
        {{ end }} mx-1 block min-w-[1.8rem] rounded text-center hover:bg-primary-600 hover:text-neutral"
          >{{ .PageNumber }}</a>
      </li>
      {{- else if ($.Scratch.Get "paginator.shouldEllipse") -}}
        <li class="page-item ">
          <span class="page-link" aria-hidden="true">&hellip;</span>
        </li>
      {{- end -}}
    {{- end -}}
    {{ if $.Paginator.HasNext }}
    <li>
      <a
          href="{{ $.Paginator.Next.URL }}"
          class="mx-1 block min-w-[1.8rem] rounded text-center hover:bg-primary-600 hover:text-neutral"
          rel="next"
      >&rarr;</a>
    </li>
    {{ end }}
  </ul>
{{- end -}}