Files
kupshop/web/templates/koza/product/product.photo.tpl
2025-08-02 16:30:27 +02:00

23 lines
1.0 KiB
Smarty

<div class="product-foto {if !$body.product.image}noimage hidden-sm-down{/if}">
<div class="pos-rel product-photo-main">
{if $body.product.image}
<a href="{get_photo photo=$body.product.image size=0}" title="{$body.product.title}"
data-rel="gallery" data-src="variation-main-image" data-img-loader>
<img src="{get_photo photo=$body.product.image size='product_detail'}" alt="{$body.product.title}"
class="img-responsive" data-src="variation-image">
</a>
{else}
<a title="{$body.product.title}" data-rel="gallery" data-src="variation-main-image">
<img src="{get_photo photo=0 size=3}" alt="{$body.product.title}" class="img-responsive" data-src="variation-image">
</a>
{/if}
<div class="product-shade" style="display: none">
<img src="" class="img-responsive" data-src="shade" alt="{t}Odstín{/t} {$body.product.title}">
</div>
</div>
<div class="product-others-photos row" style="display: none">
</div>
</div>