1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

feat: add pagination to shared entries listing

This commit is contained in:
Phantop 2024-09-02 17:21:07 -04:00 committed by Frédéric Guillot
parent 88ea0ade3e
commit 907941394b
2 changed files with 11 additions and 0 deletions

View file

@ -33,6 +33,9 @@
{{ if not .entries }}
<p role="alert" class="alert alert-info">{{ t "alert.no_shared_entry" }}</p>
{{ else }}
<div class="pagination-top">
{{ template "pagination" .pagination }}
</div>
<div class="items">
{{ range .entries }}
<article
@ -82,6 +85,9 @@
</article>
{{ end }}
</div>
<div class="pagination-bottom">
{{ template "pagination" .pagination }}
</div>
{{ end }}
{{ end }}