first commit

This commit is contained in:
2025-01-06 20:47:25 +01:00
commit 3bdbd78c2f
25591 changed files with 3586440 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{*
* @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>