30 lines
1.2 KiB
Smarty
30 lines
1.2 KiB
Smarty
{*
|
|
* We offer the best and most useful modules PrestaShop and modifications for your online store.
|
|
*
|
|
* We are experts and professionals in PrestaShop
|
|
*
|
|
* @category PrestaShop
|
|
* @category Module
|
|
* @author PresTeamShop.com <support@presteamshop.com>
|
|
* @copyright 2011-2017 PresTeamShop
|
|
* @license see file: LICENSE.txt
|
|
*}
|
|
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 container-another-modules">
|
|
{foreach from=$modules item='module'}
|
|
<div class="pts-square{if $module->active} installed{/if}">
|
|
<div class="pts-square-content">
|
|
<a href="{if $paramsBack.ISO_LANG eq 'es'}{$module->url->es|escape:'htmlall':'UTF-8'}{else}{$module->url->en|escape:'htmlall':'UTF-8'}{/if}" target="_blank">
|
|
{if $module->active}
|
|
{*<span class="pts-square-module-check">
|
|
<i class="fa-pts fa-pts-check"></i>
|
|
</span>*}
|
|
{else}
|
|
<img class="rs" src="{$module->image|escape:'htmlall':'UTF-8'}"/>
|
|
{/if}
|
|
<span class="text-center">{$module->title|escape:'htmlall':'UTF-8'}</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div> |