mirror of
https://github.com/searxng/searxng.git
synced 2026-09-23 06:36:12 +00:00
Icons are provided for the main categories known to us. The distinction between CATEGORY_GROUPS and CATEGORY_NAMES is abandoned in favor of the latter. HINT: we need single-color icons; transparent background and the color must be `currentColor` so that the icons can be used in light/dark themes. The following SVGs from the ionicons had to be revised (use ``currentColor``). - client/simple/src/svg/ionicons/logo-rss.svg - client/simple/src/svg/ionicons/radio-outline.svg - client/simple/src/svg/ionicons/color-palette-outline.svg For the following categories, I did not find any usable icons in Ionicons; new SVGs were created for these categories. - onions: client/simple/src/svg/ionicons/tor-browser.svg - lyrics: client/simple/src/svg/ionicons/song-lyric-music.svg [1] - packages: client/simple/src/svg/ionicons/package_2.svg [1] [1] Based on Google's Material icons: https://fonts.google.com/icons Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
38 lines
891 B
Plaintext
38 lines
891 B
Plaintext
{{--
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
This is a EDGE https://edgejs.dev/ template to generate a HTML Jinja template
|
|
for the backend. Example output of this EDGE template:
|
|
- https://github.com/searxng/searxng/blob/master/searx/templates/simple/icons.html
|
|
--}}
|
|
{#
|
|
Catalog of SVG symbols that can be inserted into the HTML output of a Jinja
|
|
template. This file is generated by:
|
|
|
|
make static.build.commit
|
|
|
|
from template:
|
|
|
|
client/simple/tools/jinja_svg_catalog.html.edge
|
|
|
|
To modify the icon set, edit the script:
|
|
|
|
client/simple/theme_icons.ts
|
|
|
|
#}
|
|
|
|
{%-
|
|
set catalog = {
|
|
@each((svg, name) in svg_catalog)
|
|
'{{{name}}}' : '{{{svg}}}',
|
|
@end
|
|
}
|
|
-%}
|
|
|
|
@each(macro in macros)
|
|
|
|
{% macro {{ macro.name }}(action, alt) -%}
|
|
{{ open_curly_brace }} catalog[action] | replace("{{__jinja_class_placeholder__}}", "{{ macro.class }}") | safe {{ close_curly_brace }}
|
|
{%- endmacro %}
|
|
@end
|