Файл: core/tpl/user/default/blocks/newprstatic.tpl.html
Строк: 39
<?php
{* шаблон статического блока новых товаров *}
{if $new_products}
<table cellspacing="0" cellpadding="0" width="100%">
{section name=i loop=$new_products}
{if $smarty.section.i.index is div by 4}<tr>{/if}
<td width="{math equation="100 / x" x=4 format="%d"}%" align="center" valign="top" style="padding: 8px;">
<a href="{if $smarty.const.CONF_MOD_REWRITE eq 1}product_{$new_products[i].productID}.html{else}index.php?productID={$new_products[i].productID}{/if}"><img src="data/{$new_products[i].filename}" alt="{$new_products[i].name}"></a>
<div class="fil"></div>
<b class="price">{if $new_products[i].cena <= 0}{$smarty.const.STRING_NOPRODUCT_IN}{else}{$new_products[i].Price}{/if}</b>
<div class="fil"></div>
<a href="{if $smarty.const.CONF_MOD_REWRITE eq 1}product_{$new_products[i].productID}.html{else}index.php?productID={$new_products[i].productID}{/if}">{$new_products[i].name}</a>
</td>
{if ($smarty.section.i.index+1) is div by 4}</tr>{else}
<td><img src="data/{$smarty.const.TPL}/pixel.gif" class="delim" alt=""></td>
{/if}
{/section}
</table>
{else}
<div align="center">{$smarty.const.STRING_EMPTY_CATEGORY}</div>
{/if}
?>