{% if data.size > 0 %} {% if embeddedStyles == true %} {% capture css %} {% render "../../../assets/styles/components/media-grid.css" %} {% render "../../../assets/styles/components/progress-bar.css" %} {% endcapture %} {% endif %} {% assign media = data | normalizeMedia %}

{% tablericon icon title %} {{ title }}

{% for item in media limit: count %} {% assign alt = item.alt | strip | escape %}
{% if item.title %}
{{ item.title }}
{% endif %} {% if item.percentage %} {% render "partials/now/progress-bar.liquid", percentage:item.percentage %} {% endif %} {% if item.subtext %}
{{ item.subtext }}
{% endif %}
{%- capture loadingStrategy -%} {%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%} {%- endcapture -%} {% if shape == 'square' %} {% image item.image, alt, '', loadingStrategy, 320 %} {% else %} {% image item.image, alt, '', loadingStrategy, 200 %} {% endif %}
{% endfor %}
{% endif %}