Update search.html

Add keyboard shortcuts to PREV and NEXT links
This commit is contained in:
Jonathan Sims 2022-04-02 10:05:31 -04:00 committed by GitHub
parent 82f51c70ff
commit 3e6ee352e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -92,13 +92,13 @@
{% if params.before != "" %}
<a href="?q={{ params.q }}&restrict_sr={{ params.restrict_sr }}
&sort={{ params.sort }}&t={{ params.t }}
&before={{ params.before }}">PREV</a>
&before={{ params.before }}" accesskey="r">P<span style="text-decoration: underline;">R</span>EV</a>
{% endif %}
{% if params.after != "" %}
<a href="?q={{ params.q }}&restrict_sr={{ params.restrict_sr }}
&sort={{ params.sort }}&t={{ params.t }}
&after={{ params.after }}">NEXT</a>
&after={{ params.after }}" accesskey="x">NE<span style="text-decoration: underline;">X</span>T</a>
{% endif %}
</footer>
{% endif %}