Advertisement
Guest User

index.tpl file

a guest
Sep 29th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. {if $records}
  2. <div class="smallrightlist">
  3. <h2 class="subhead">{$smarty.const.INDEX_FEATURED}</h2>
  4. {foreach item="image" from=$records}
  5. <p>
  6. {if $use_fancy_urls}
  7. <a href="listings/view/{$image.make|strip:"-"}/{$image.model|strip:"-"}/{$image.listingid}/"><img src="{$image.imagethumbpath}" title="{$smarty.const.IMAGE} {counter}" alt="{$smarty.const.IMAGE} {counter}" /></a>
  8. {else}
  9. <a href="listings.php?make={$image.make|strip:"-"}&amp;model={$image.model|strip:"-"}&amp;id={$image.listingid}"><img src="{$image.imagethumbpath}" title="{$smarty.const.IMAGE} {counter}" alt="{$smarty.const.IMAGE} {counter}" /></a>
  10. {/if}
  11. <br />{$image.ad_title}
  12. </p>
  13. {/foreach}
  14. </div>
  15. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement