Files
kupshop/web/templates/kupkolo/block.subsections.tpl
2025-08-02 16:30:27 +02:00

20 lines
767 B
Smarty

{if $sections|count}
<div class="row subsections">
{foreach $sections as $subCat}
{if !$subCat.up}
<div class="{block 'responsive-class'}col-md-4 col-xs-6{/block}">
<a href="{url s=category IDcat=$subCat.id IDpd=$body.producer.id producerTitle=$body.producer.title}"
class="category display-table" title="{$subCat.title}">
<div class="display-cell">
<img src="{get_photo photo=$subCat.photo size=6}" class="img-responsive" alt="{$subCat.title}">
</div>
<div class="display-cell">
{$subCat.title}
</div>
</a>
</div>
{/if}
{/foreach}
</div>
{/if}