c1ece47532
Whenever the "prev" and "next" buttons have no hyperlink, decrease their opacity to signal that they lead to nowhere. This signal is stronger and more obvious than the current one which merely removes the underline decoration from the text. This patch is an improvement on top of https://github.com/miniflux/v2/pull/1107
19 lines
892 B
HTML
19 lines
892 B
HTML
{{ define "pagination" }}
|
|
<div class="pagination">
|
|
<div class="pagination-prev {{ if not .ShowPrev }}disabled{{end}}">
|
|
{{ if .ShowPrev }}
|
|
<a href="{{ .Route }}{{ if gt .PrevOffset 0 }}?offset={{ .PrevOffset }}{{ if .SearchQuery }}&q={{ .SearchQuery }}{{ end }}{{ else }}{{ if .SearchQuery }}?q={{ .SearchQuery }}{{ end }}{{ end }}" data-page="previous" rel="prev">{{ t "pagination.previous" }}</a>
|
|
{{ else }}
|
|
{{ t "pagination.previous" }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="pagination-next {{ if not .ShowNext }}disabled{{end}}">
|
|
{{ if .ShowNext }}
|
|
<a href="{{ .Route }}?offset={{ .NextOffset }}{{ if .SearchQuery }}&q={{ .SearchQuery }}{{ end }}" data-page="next" rel="next">{{ t "pagination.next" }}</a>
|
|
{{ else }}
|
|
{{ t "pagination.next" }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|