diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-08-31 16:13:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-31 16:13:47 +0000 |
| commit | 37b3d8c33b243f342d80aac45cc023d66408a749 (patch) | |
| tree | 8a88c4febecbe2853c01613d19d9b5a678c21c37 /searx/templates | |
| parent | 840a32756489fe6fa5b27f2d08034033a0cc79de (diff) | |
| parent | d246679dbe5eccc5e7d5be50b8c78c76e1f0bebb (diff) | |
Merge pull request #276 from dalf/simple_eslint
Simple theme: eslint and bug fix
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/simple/results.html | 4 |
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) -}} |