{% trans_default_domain 'shop_video' %}
{% if hasLink %}
<a href="{{ path(linkRoute|default('shop_video_details'), {'id': shop_video.stringId}) }}" target="{{ linkTarget|default('_self') }}">
{% endif %}
<div class="shop-video-item mt-30">
<div class="shop-video-item-thumb rounded">
{% if shop_video.preview %}
<picture>
<source media="(min-width: 512px)" srcset="{{ shop_video.preview.webPath | sindrive_resize(752, 423) | sindrive_protect }}">
<img src="{{ shop_video.preview.webPath | sindrive_resize(512, 288) | sindrive_protect }}" class="img-fluid" alt="{{ shop_video.title }}">
</picture>
{% else %}
<img src="{{ asset('images/proposal/blank.jpg') }}" alt="{{ shop_video.title }}">
{% endif %}
<div class="shop-video-item-content rounded-bottom">
<h3 class="title fw-medium" title="{{ shop_video.title }}">{{ shop_video.title }}</h3>
</div>
</div>
{% block label_top_left %}
{% if shop_video.showNewLabel %}
<div class="shop-video-item-label">
<span class="fw-medium">{{ 'grid.label.new'|trans }}</span>
</div>
{% endif %}
{% endblock %}
{% block item_content %}{% endblock %}
</div>
{% if hasLink %}
</a>
{% endif %}