Files
pyrom/app/templates/common/icons.html

24 lines
771 B
HTML

{%- macro icn_info(width=48) -%}
<img src="/static/icons/info.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}
{%- macro icn_warn(width=48) -%}
<img src="/static/icons/warn.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}
{%- macro icn_error(width=48) -%}
<img src="/static/icons/error.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}
{%- macro icn_bookmark(width=16) -%}
<img src="/static/icons/bookmark.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}
{%- macro icn_locked(width=16) -%}
<img src="/static/icons/locked.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}
{%- macro icn_stickied(width=16) -%}
<img src="/static/icons/stickied.svg" alt="info" style="width: {{width}}px;">
{%- endmacro -%}