Files
kupshop/web/templates/elnino/components/block.articles.sections.tpl
2025-08-02 16:30:27 +02:00

12 lines
518 B
Smarty

<div class="articles-sections">
<p>{t}Témata{/t}</p>
<div>
<a href="{path('kupshop_content_articles_articles_1', ['IDb' => $id_top_section])}" class="{if $id_top_section == $active_id}active{/if}">{t}Vše{/t}</a>
{foreach $sections as $section}
{if $section.articles_count}
<a href="{path('kupshop_content_articles_articles_1', ['IDb' => $section.id])}" class="{if $section.id == $active_id}active{/if}">{$section.name|trim}</a>
{/if}
{/foreach}
</div>
</div>