Files
kalsport.pl/modules/leobootstrapmenu/views/templates/hook/widgets/widget_links.tpl
2024-11-05 12:22:50 +01:00

38 lines
972 B
Smarty

{*
* @Module Name: Leo Bootstrap Menu
* @Website: leotheme.com.com - prestashop template provider
* @author Leotheme <leotheme@gmail.com>
* @copyright Leotheme
*}
<div class="leo-widget" data-id_widget="{$id_widget}">
{if isset($links)}
<div class="widget-links">
{if isset($widget_heading)&&!empty($widget_heading)}
<div class="menu-title">
{$widget_heading}
</div>
{/if}
<div class="widget-inner">
<div id="tabs{$id}" class="panel-group">
<ul class="nav-links">
{foreach $links as $key => $ac}
<li ><a href="{$ac.link}" >{$ac.text}</a></li>
{/foreach}
</ul>
</div>
</div>
</div>
{/if}
{if $show_widget_bo == 'admin'}
<div class="w-name">
<select name="inject_widget" class="inject_widget_name">
{foreach from=$widgets item=w}
<option value="{$w['key_widget']}">
{$w['name']}
</option>
{/foreach}
</select>
</div>
{/if}
</div>