10 lines
468 B
HTML
10 lines
468 B
HTML
<div class="about-screenshots-grid about-section-screenshots">
|
|
{% for item in items %}
|
|
{% if item.is_featured and item.image %}
|
|
{% include "partials/_linked_card_open.html" with url=item.url card_class="screenshot-item fade-in screenshot-item--featured" %}
|
|
<img src="{{ item.image.url }}" alt="{{ item.image_alt|default:item.title }}" loading="lazy" />
|
|
{% include "partials/_linked_card_close.html" with url=item.url %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|