28 lines
966 B
HTML
28 lines
966 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="warning" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|
|
|
|
{%- macro icn_error(width=48) -%}
|
|
<img src="/static/icons/error.svg" alt="error" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|
|
|
|
{%- macro icn_megaphone(width=48) -%}
|
|
<img src="/static/icons/megaphone.svg" alt="megaphone" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|
|
|
|
{%- macro icn_bookmark(width=16) -%}
|
|
<img src="/static/icons/bookmark.svg" alt="bookmark" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|
|
|
|
{%- macro icn_locked(width=16) -%}
|
|
<img src="/static/icons/locked.svg" title="Locked" alt="lock" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|
|
|
|
{%- macro icn_stickied(width=16) -%}
|
|
<img src="/static/icons/sticky.svg" title="Stickied" alt="paper held by pushpin" style="width: {{width}}px;">
|
|
{%- endmacro -%}
|