d5adf8b9f6
While this is widely documented for SEO reason, it also helps for accessibility. Notably, if you are using tools like Vimium to browse using only the keyboard, these hints help to select the links. It's all the more useful when the text is not in English.
19 lines
751 B
HTML
19 lines
751 B
HTML
{{ define "entry_pagination" }}
|
|
<div class="pagination">
|
|
<div class="pagination-prev">
|
|
{{ if .prevEntry }}
|
|
<a href="{{ .prevEntryRoute }}{{ if .searchQuery }}?q={{ .searchQuery }}{{ end }}" title="{{ .prevEntry.Title }}" data-page="previous" rel="prev">{{ t "pagination.previous" }}</a>
|
|
{{ else }}
|
|
{{ t "pagination.previous" }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="pagination-next">
|
|
{{ if .nextEntry }}
|
|
<a href="{{ .nextEntryRoute }}{{ if .searchQuery }}?q={{ .searchQuery }}{{ end }}" title="{{ .nextEntry.Title }}" data-page="next" rel="next">{{ t "pagination.next" }}</a>
|
|
{{ else }}
|
|
{{ t "pagination.next" }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|