Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. {*Шаблон главной страницы*}
  2.  
  3. {foreach $rsProducts as $item name=products}
  4.     <div style="float: left; padding: 0px 30px 40px 0px;">
  5.         <a href="/product/{$item['id']}/">
  6.             <img src="/images/products/{$item['image']}" width="100" />
  7.         </a><br />
  8.         <a href="/product/{$item['id']}/">{$item['name']}</a>
  9.     </div>
  10.         {if $smarty.foreach.products.iteration mod 3 ==0}
  11.             <div style="clear: both"></div>
  12.             {/if}
  13. {/foreach}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement