Add keyboard shortcuts to nav buttons (closes #466)

This commit is contained in:
spikecodes 2022-05-20 23:10:11 -07:00
parent 0c757023f9
commit d558127306
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
3 changed files with 6 additions and 6 deletions

View file

@ -65,11 +65,11 @@
<footer>
{% if !ends.0.is_empty() %}
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}">PREV</a>
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}" accesskey="P">PREV</a>
{% endif %}
{% if !ends.1.is_empty() %}
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}">NEXT</a>
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}" accesskey="N">NEXT</a>
{% endif %}
</footer>
</div>