Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {if count($from)}
  2. <div class="classifieds">
  3. <div class="pop">
  4. <ul>
  5. {foreach from=$from item=item key=key name=tmp}
  6. <li>
  7. <div class="title"><a href="{$item.link}">{$item.title}</a></div>
  8. </li>
  9. {if $item.featured}</div>{/if}
  10. {/foreach}
  11. </ul>
  12. </div>
  13. </div>
  14. {else}
  15. <div class="centerText">{$language.nothing_found}</div>
  16. {/if}
  17.  
  18. {if count($from)}
  19. <div class="classifieds">
  20. <div class="pop">
  21. <ul>
  22. {foreach from=$from item=item key=key name=tmp}
  23. <li>
  24. <div class="title"><a href="{$item.link}">{$item.title}</a></div>
  25. </li>
  26. {if $item.featured}</div>{/if}//remove this line
  27. {/foreach}
  28. </ul>
  29. </div>
  30. </div>
  31. {else}
  32. <div class="centerText">{$language.nothing_found}</div>
  33. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement