You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
796 B

{if not empty($item.children)}
<li class="mega-menu--item mega-menu--item-level-{$item.sectionLevel}">
<a href="{$item.sefurl|escape}" class="" data-bs-toggle="dropdown">{tr}{$item.name}{/tr}</a>
<ul class="">
{foreach from=$item.children item=sub}
{include file='bootstrap_smartmenu_megamenu_children.tpl' item=$sub sub=true}
{/foreach}
</ul>
</li>
{else}
<li class="mega-menu--item mega-menu--item-level-{$item.sectionLevel}">
{if $item.block}
<div class="block--container">{tr}{$item.name}{/tr}</div></a> {* </a> added to close the anchor in the menu list item -- g_c-l *}
{else}
<a class="" href="{$item.sefurl|escape}">{tr}{$item.name}{/tr}</a>
{/if}
</li>
{/if}