Files
lulandia.pl/modules/leobootstrapmenu/views/widgets/widget_manufacture.tpl
2025-04-01 00:38:54 +02:00

27 lines
885 B
Smarty

{*
* @Module Name: Leo Bootstrap Menu
* @Website: leotheme.com.com - prestashop template provider
* @author Leotheme <leotheme@gmail.com>
* @copyright 2007-2018 Leotheme
*}
<div class="widget-manufacture">
{if isset($widget_heading)&&!empty($widget_heading)}
<div class="menu-title">
{$widget_heading}
</div>
{/if}
<div class="widget-inner">
{if manufacturers}
<div class="manu-logo">
{foreach from=$manufacturers item=manufacturer name=manufacturers}
<a href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{l s='view products' mod='leobootstrapmenu'}">
<img src="{$manufacturer.image|escape:'htmlall':'UTF-8'}" alt=""> </a>
{/foreach}
</div>
{else}
<p class="alert alert-info">{l s='No image logo at this time.' mod='leobootstrapmenu'}</p>
{/if}
</div>
</div>