searx/templates/simple/categories.html
{% from 'simple/icons.html' import icon_big %} {%- set category_icons = { 'apps': 'appstore', 'dictionaries': 'book', 'files': 'file-tray-full', 'general': 'search', 'images': 'image', 'it': 'layers', 'map': 'location', 'music': 'musical-notes', 'news': 'newspaper', 'radio': 'radio', 'science': 'school', 'social media': 'people', 'TV': 'tv', 'videos': 'play', } -%}
{{- '' -}} {%- if not search_on_category_select or not display_tooltip -%} {%- for category in categories -%} {{- '' -}} {{- icon_big(category_icons[category]) if category in category_icons else icon_big('globe') -}} {{- _(category) -}}
{%- endfor -%} {%- if display_tooltip %} {{ _('Click on the magnifier to perform search') }} {% endif -%} {%- else -%} {%- for category in categories -%}{{- '\n' -}} {{- icon_big(category_icons[category]) if category in category_icons else icon_big('globe') -}} {{- _(category) -}} {{- '' -}} {{- '' -}} {%- endfor -%} {{- '\n' -}} {%- endif -%} {{- '' -}}