{% macro imageElement(type, imageUrl) %} {% if imageUrl %} {% else %} {% endif %} {% endmacro %} {% macro ribbonElement(ribbon) %} {{ ribbon.text }} {% endmacro %} {% macro profileImage(type, size, imageUrl, link, ribbon, className) %} {% if link %} {% else %} {% endif %} {% endmacro %} {% macro productImageLarge(imageUrl, link, ribbon, className) %} {{ profileImage('product', 'large', imageUrl, link, ribbon, className) }} {% endmacro %} {% macro productImageMedium(imageUrl, link, ribbon, className) %} {{ profileImage('product', 'medium', imageUrl, link, ribbon, className) }} {% endmacro %} {% macro productImageSmall(imageUrl, link, ribbon, className) %} {{ profileImage('product', 'small', imageUrl, link, ribbon, className) }} {% endmacro %} {% macro userImageLarge(imageUrl, link) %} {{ profileImage('user', 'large', imageUrl, link) }} {% endmacro %} {% macro userImageMedium(imageUrl, link) %} {{ profileImage('user', 'medium', imageUrl, link) }} {% endmacro %} {% macro userImageSmall(imageUrl, link) %} {{ profileImage('user', 'small', imageUrl, link) }} {% endmacro %}