{#
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 = {
'alert' : '',
'appstore' : '',
'book' : '',
'camera' : '',
'close' : '',
'download' : '',
'ellipsis-vertical' : '',
'file-tray-full' : '',
'file-tray-stacked' : '',
'film' : '',
'globe' : '',
'heart' : '',
'image' : '',
'language' : '',
'layers' : '',
'leecher' : '',
'location' : '',
'magnet' : '',
'musical-notes' : '',
'navigate-down' : '',
'navigate-left' : '',
'navigate-right' : '',
'navigate-up' : '',
'people' : '',
'play' : '',
'rainy' : '',
'save' : '',
'school' : '',
'search' : '',
'seeder' : '',
'settings' : '',
'tv' : '',
'videocam' : '',
'information-circle' : '',
'lyrics' : '',
'newspaper' : '',
'palette' : '',
'package' : '',
'radio' : '',
'rss' : '',
'tor' : '',
}
-%}
{% macro icon(action, alt) -%}
{{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set") | safe }}
{%- endmacro %}
{% macro icon_small(action, alt) -%}
{{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set-small") | safe }}
{%- endmacro %}
{% macro icon_big(action, alt) -%}
{{ catalog[action] | replace("__jinja_class_placeholder__", "sxng-icon-set-big") | safe }}
{%- endmacro %}