{% from "/macros/rating.html" import rating %} {% from "/macros/profile-image.html" import productImageLarge %} {% from "/macros/simple-tooltip.html" import simpleTooltip %} {% macro listingItemsRow(listing) %}
{% for app in listing.items %}
{{ rating(app.rating) }}
{{ app.name }} {% for badge in app.badges %} {{ badge.label }} {% endfor %}

{{ app.blurb }}

{{ app.overview }} {{ listing.i18n.learnMore }}

{% for badge in app.merchandisingBadges %}
{{ badge.name }}
{% endfor %}
{{ app.startingPrice.priceCaption }}
{{ app.startingPrice.formattedPrice }}
{% if app.startingPrice.frequency.shortLabel %} /{{ app.startingPrice.frequency.shortLabel | lower }} {% endif %}
{{ listing.i18n.viewProfile }}
{% endfor %}
{% endmacro %}