HTML · 739 bytes Raw Blame History
1 {{ define "explore-feed-pagination" -}}
2 {{ if .FeedHasNext }}
3 <nav id="shithub-feed-pagination" class="shithub-feed-pagination" aria-label="Activity pagination">
4 <a
5 class="shithub-button shithub-feed-more-button"
6 href="{{ .FeedNextURL }}"
7 hx-get="{{ .FeedNextURL }}"
8 hx-target="#shithub-feed-list"
9 hx-swap="beforeend"
10 hx-select="#shithub-feed-fragment-rows > *"
11 hx-select-oob="#shithub-feed-pagination:outerHTML"
12 hx-indicator="this"
13 >
14 <span class="shithub-feed-more-label">More</span>
15 <span class="shithub-feed-more-loading">Loading...</span>
16 </a>
17 </nav>
18 {{ else }}
19 <nav id="shithub-feed-pagination" class="shithub-feed-pagination" aria-label="Activity pagination"></nav>
20 {{ end }}
21 {{- end }}