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

26 lines
1.0 KiB
Smarty

{if count($sections) gt 0}
<div class="row subsections {* if $body.producer}hidden-md-up{/if *}">
{foreach $sections as $subCat}
{if $subCat.virtual == "Y" or !$subCat.photo}{continue}{/if}
<div class="col-sm-6 col-lg-4 col-xl-3 col-xs-12 col-xxl-5ths m-b-1">
<div class="subsection-wrapper">
<a class="subsection display-table"
href="{url s=category IDcat=$subCat.id IDpd=$body.producer.id producerTitle=$body.producer.title}"
title="{$subCat.title}">
<div class="display-cell">
{if $subCat.photo}
<img src="{get_photo photo=$subCat.photo size=6}" alt="{$subCat.title}">
{else}
<i class="fc icons_women_scent {$subCat.id}"></i>
{/if}
</div>
<div class="display-cell">
{$subCat.title}
</div>
</a>
</div>
</div>
{/foreach}
</div>
{/if}