{% macro format(thumbnail, box_w, box_h, extra_class, wrap, lazyload, autoplay) %} {% set record_type = thumbnail.get_type() %} {% set box_w = box_w|round %} {% set box_h = box_h|default(box_w)|round %} {% set url = app.getAuthenticator().isAuthenticated() ? thumbnail.get_url() : thumbnail.get_permalink().get_url() %} {% set original_h = thumbnail.get_height() > 0 ? thumbnail.get_height() : 120 %} {% set original_w = thumbnail.get_width() > 0 ? thumbnail.get_width() : 120 %} {% if wrap %}
{% endif %} {% if record_type == 'VIDEO_MP4' or record_type == 'VIDEO_FLV' %}
{% elseif record_type == 'FLEXPAPER' or record_type == 'PDF' %}
{% elseif record_type == 'AUDIO_MP3' %}
{% else %} {% set fit_size = fitIn( {"width":original_w, "height":original_h}, {"width":box_w, "height":box_h} )%} {% endif %} {% if wrap %}
{% endif %} {% endmacro %}