summaryrefslogtreecommitdiff
path: root/searx/templates/simple/results.html
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-08-24 11:31:29 +0200
committerAlexandre Flament <alex@al-f.net>2021-08-31 15:41:31 +0200
commitf77f797f8c7016a5748acfcf934a2c54d15af765 (patch)
tree7579f8667c4b7493518fca1aef826c7393ff75ea /searx/templates/simple/results.html
parent183c856396e00d08c929ec13c80f82cdc4f38c8f (diff)
downloadsearxng-f77f797f8c7016a5748acfcf934a2c54d15af765.tar.gz
searxng-f77f797f8c7016a5748acfcf934a2c54d15af765.zip
[mod] simple theme: fix eslint errors, fix VIM keys
* VIM keys: fix the next page and previous pages (n, p keys) * Map: Enable the wikipedia map (the layer was initialized but not included)
Diffstat (limited to 'searx/templates/simple/results.html')
-rw-r--r--searx/templates/simple/results.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html
index a68449736..59874dab3 100644
--- a/searx/templates/simple/results.html
+++ b/searx/templates/simple/results.html
@@ -146,7 +146,7 @@
{% if paging %}
<nav id="pagination">
{% if pageno > 1 %}
- <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
+ <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}" class="previous_page">
<div class="{% if rtl %}right{% else %}left{% endif %}">
<input type="hidden" name="q" value="{{ q|e }}" >
{{- engine_data_form(engine_data) -}}
@@ -163,7 +163,7 @@
</div>
</form>
{% endif %}
- <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
+ <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}" class="next_page">
<div class="{% if rtl %}left{% else %}right{% endif %}">
<input type="hidden" name="q" value="{{ q|e }}" >
{{- engine_data_form(engine_data) -}}