{% if icon and icon_position == "left" %}
{% if icon_type == "fa" %}
{% elif icon_type == "unicode" %}
{% if "" in icon %}
{{ icon|safe }}
{% else %}
{{ icon }};
{% endif %}
{% else %}
{{ icon }}
{% endif %}
{% endif %}
{% if icon and icon_position == "right" %}
{% if icon_type == "fa" %}
{% elif icon_type == "unicode" %}
{% if "" in icon %}
{{ icon|safe }}
{% else %}
{{ icon }};
{% endif %}
{% else %}
{{ icon }}
{% endif %}
{% endif %}