mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
add multi theming support
This commit is contained in:
7
searx/templates/default/categories.html
Normal file
7
searx/templates/default/categories.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<div id="categories">
|
||||
{% for category in categories %}
|
||||
<div class="checkbox_container">
|
||||
<input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user