{% macro format(arraySubdefs, displayWidth, displayHeight, extraclass, wrap)%} {% set displayWidth = displayWidth %} {% set displayHeight = displayHeight|default(displayWidth) %} {% if wrap %}
{% endif %} {% set unique_id = '' | JSUniqueID %}
{% set s_width = null %} {% set s_height = null %} {% for name, subdef in arraySubdefs %} {% if loop.first %} {% set s_width = subdef.get_width() %} {% set s_height = subdef.get_height() %} {% endif %} {% if app.getAuthenticator().isAuthenticated() == true %} {% set url = subdef.get_url() %} {% else %} {% set url = subdef.get_permalink().get_url() %} {% endif %}
{% endfor %}
{% if wrap %}
{% endif %} {% endmacro %}