Gitee/searx/templates/smart/icons.html

18 lines
644 B
HTML

{# this file was generated by svg2jinja.js #}
{%- set icons = {
'home':'<svg viewBox="0 0 24 24" fill="currentColor" class="icon" aria-hidden="true"><path d="M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z"/></svg>',
}
-%}
{% macro icon(action, alt) -%}
{{ icons[action] | safe }}
{%- endmacro %}
{% macro icon_small(action) -%}
{{ icons[action] | replace("icon", "icon-small") | safe }}
{%- endmacro %}
{% macro icon_big(action, alt) -%}
{{ icons[action] | replace("icon", "icon-big") | safe }}
{%- endmacro %}