searxng/searx/templates/pix-art/search.html

10 lines
486 B
HTML
Raw Normal View History

2015-02-15 18:09:17 +00:00
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
<div id="search_wrapper">
<input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" size="100" {% if q %}value="{{ q }}"{% endif %}/>
2015-02-17 00:07:14 +00:00
<input type="submit" value="" id="search_submit" />
2015-02-15 18:09:17 +00:00
{% for category in categories %}
<input type="hidden" name="category_{{ category }}" value="1"/>
{% endfor %}
</div>
</form>