{% from "/macros/rating.html" import rating %} {% from "/macros/profile-image.html" import productImageLarge %} {% from "/macros/complex-tooltip.html" import sliderAppTooltip %} {% macro slider(name, list=[], i18n={}, viewAllUrl = "") %}

{{ name }}

{% if viewAllUrl %} {{ i18n.viewall }} {% endif %}
{% for app in list %}
{{ productImageLarge(app.iconUrl, app.url, app.productRibbon) }} {{ sliderAppTooltip("bottom", app, i18n) }}

{{ app.name }}

{{ app.blurb }}

{% if(app.startingPrice.formattedFullPrice == "Free") %} {{ app.startingPrice.formattedFullPrice }} {% elseif(app.startingPrice.formattedFullPrice) %} {{ app.startingPrice.priceCaption }} {{ app.startingPrice.formattedFullPrice }} {% endif %}

{{ rating(app.rating) }} {% if(app.merchandisingBadges | length) %}
{% for badge in app.merchandisingBadges %}
{{ badge.name }}
{% endfor %}
{% endif %}
{% endfor %}
{% endmacro %}