<!--/ Start content /--> <div id="content"> {$template} {if $content_array.content_id == 4} <!--/ If the page ID is equal to 4... /--> {prod_feat_list5} <!--/ ...then output this featured products list ID /--> {foreach item=product from=$featured_products} <!--/ Start looping through the featured items /--> <div> <a href="{$product.product_url}"><img src="media/{$product.media_filename}" alt="{$product.product_name}" /></a> <h2>{$product.product_name}</h2> {$product.product_maindescription|strip_tags} <p><a href="{$product.product_url}">See more details about the {$product.product_name}</a></p> </div> {/foreach} <!--/ Stop looping through the featured items /--> {/if} </div> <!--/ End content /--> |