{% from "/macros/rating.html" import rating %} {% from "/macros/profile-image.html" import productImageSmall %} {% from "/macros/simple-tooltip.html" import simpleTooltip %} {% macro listingItemsGrid(listing, showUtils = true) %}
{% for app in listing.items %}

{{ app.name }}

{{ rating(app.rating) }}

{{ app.overview }}

{% for badge in app.badges %} {{ badge.label }} {% endfor %}
{% 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 %}

{% if showUtils == true %}
{% endif %}
{% if app.productRibbon %}
{{ app.productRibbon.text }}
{% endif %}
{% endfor %}{% for i in range(0, remainingTiles) -%}
{%- endfor %} {% endif %}
{% endmacro %}