29 lines
No EOL
1.1 KiB
Text
29 lines
No EOL
1.1 KiB
Text
{% if data.size > 0 %}
|
|
{% assign media = data | normalizeMedia %}
|
|
<div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
|
|
{% for item in media limit: count %}
|
|
{% assign alt = item.alt | strip | escape %}
|
|
<a href="{{ item.url | stripUtm }}" title="{{ alt }}">
|
|
<div class="item-wrapper{% if item.subtext %} shadow{% endif %}">
|
|
<div class="meta-text">
|
|
{% if item.title %}
|
|
<div class="header">{{ item.title }}</div>
|
|
{% endif %}
|
|
{% if item.percentage %}
|
|
{% render "partials/now/progress-bar.liquid", percentage:item.percentage %}
|
|
{% endif %}
|
|
{% if item.subtext %}
|
|
<div class="subheader">
|
|
{{ item.subtext }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{%- capture loadingStrategy -%}
|
|
{%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%}
|
|
{%- endcapture -%}
|
|
{% image item.image, alt, '', loadingStrategy %}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %} |