mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
[mod] more html5 compliant
This commit is contained in:
parent
4009b9a66d
commit
04727a2043
@ -6,7 +6,7 @@
|
||||
</div>
|
||||
<div id="results">
|
||||
{% if suggestions %}
|
||||
<div id="suggestions">Suggestions: {% for suggestion in suggestions %}<form method="post" action=""><input type="hidden" name="q" value="{{suggestion}}"><input type="submit" value="{{ suggestion }}" /></form>{% endfor %}</div>
|
||||
<div id="suggestions">Suggestions: {% for suggestion in suggestions %}<form method="post" action="/"><input type="hidden" name="q" value="{{suggestion}}"><input type="submit" value="{{ suggestion }}" /></form>{% endfor %}</div>
|
||||
{% endif %}
|
||||
<div>
|
||||
Number of results: {{ number_of_results }}
|
||||
@ -18,14 +18,14 @@
|
||||
{% include 'result_templates/default.html' %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<form method="post" action="">
|
||||
<form method="post" action="/">
|
||||
<div class="left">
|
||||
<input type="hidden" name="q" value="{{ q }}" />
|
||||
<input type="hidden" name="format" value="csv" />
|
||||
<input type="submit" value="download results in csv" />
|
||||
</div>
|
||||
</form>
|
||||
<form method="post" action="">
|
||||
<form method="post" action="/">
|
||||
<div class="">
|
||||
<input type="hidden" name="q" value="{{ q }}" />
|
||||
<input type="hidden" name="format" value="json" />
|
||||
|
Loading…
Reference in New Issue
Block a user