summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/partials/pagination.html
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
commite77051ccc4b47951bfa4fde2be436b1bb2fb113b (patch)
treef0b75ee3521da9c8cd39dac4359212348f70e4e8 /themes/blowfish/layouts/partials/pagination.html
parent4b355837824ac2422d371acef790f0f4249255c7 (diff)
use https://github.com/nunocoracao/blowfish.git
Diffstat (limited to 'themes/blowfish/layouts/partials/pagination.html')
-rw-r--r--themes/blowfish/layouts/partials/pagination.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/themes/blowfish/layouts/partials/pagination.html b/themes/blowfish/layouts/partials/pagination.html
new file mode 100644
index 0000000..c523313
--- /dev/null
+++ b/themes/blowfish/layouts/partials/pagination.html
@@ -0,0 +1,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 -}} \ No newline at end of file