File: D:/web/hyperflight/! bs3/inc-template-new-products.asp
<%
' (SS,17/01/13) new template, shown using ShowNewProducts
' (SS,06/06/17) modified for Bootstrap (RWD)
' --- START OF NEW PRODUCTS TEMPLATES --- '
Sub ShowNewProductsEmpty
' html to show if no new products to go here '
%>
<%
End Sub
Sub ShowNewProductsHeader
%>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h3 class="logo-info">New In Stock</h3>
</div>
</div>
<div class="row grid">
<%
End Sub
Sub ShowNewProductsItem(AProductCode, AProductName, ASalePrice, AStdPrice, ANumInStock)
' (SS,6/6/17) calls the normal ShowProductListItem
ShowProductListItem 100, AProductCode, AProductName, ASalePrice, AStdPrice, ANumInStock, False, False, False, "", "", ""
End Sub
Sub ShowNewProductsFooter
%>
</div>
</div>
<%
End Sub
' --- END OF NEW PRODUCTS TEMPLATES --- '
%>