22 lines
774 B
Smarty
22 lines
774 B
Smarty
{if count($sections) gt 0}
|
|
<div class="row filter-row" id="category">
|
|
|
|
<h4 data-opener=".category-wrapper" class="filter-opener m-b-0">{t}Kategorie{/t}</h4>
|
|
|
|
<div class="category-wrapper opener-content" style="display: none;">
|
|
|
|
<div class="side-sections">
|
|
<ul class="nav nav-pills nav-stacked nav-producer">
|
|
{foreach $sections as $subCat}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{url s=category IDcat=$subCat.id IDpd=$body.producer.id producerTitle=$body.producer.title}" title="{$subCat.title}">
|
|
{$subCat.title}
|
|
</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|