{% macro fill_css(value="", prefix="", yes_value="", postfix="") %} {% if value %} {% if yes_value %} {{ yes_value }} {% else %} {{ prefix }}{{ value }}{{ postfix }} {% endif %} {% endif %} {% endmacro %} {% macro render_icon(icon, color="", bold=false, class="", style="", animation="", css_color="", size=0) %} {% if css_color %} {% set css_color = "color: %s;"|format(css_color) %} {% endif %} {% set bold = " font-weight: bold;" if bold else "" %} {% set animation_css = fill_css(animation, ' icon-') %} {% if color or class %} {% set class = "%s %s"|format(class, ("text-" + color) if color else "") %} {% endif %} {% endmacro %}