File: D:/web/hyperflight/! bs3/inc-template-home.asp
<%
' (SS,14/8/14) Bootstrap version
' (SS,28/11/14) added call to sub CustomShowHolidayNotice
' (SS,2/3/15) improvement news section, to only show up to a certain a point to avoid getting too long. Added a link to More News.
' (SS,14/05/21) Replaced ShowRecentReviewsV2 7 with ShowRecentReviews 7, ""
Sub ShowPage_home
%>
<div class="row">
<div class="container-no" style="margin-top: 15px">
<div class="col-lg-12" style="margin-bottom: 0px;">
<%ShowBanner(True)%>
</div><!-- col -->
</div><!-- container -->
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<%=GetWebText("HOME")%>
</div>
</div>
<%CustomShowHolidayNotice "H", 0%>
<hr style="margin-bottom: 0px" />
</div>
<%'ShowHighlights
' 12 newest (or recently added to stock) products shown instead of featured
' (SS,6/7/26) reduced from 24 to 16 temporarily for PCI compliance false alarm security code detection issue
' (SS,7/7/26) back to 24 after successful PCI compliance scan
ShowNewProducts 24, ""
%>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-adjust-left">
<%'ShowBestSellers
ShowHighlights
%>
</div>
<div class="col-lg-6 col-md-6 col-adjust-right">
<div class="panel panel-default">
<div class="panel-heading">Latest Reviews</div>
<div class="panel-body">
<% ShowRecentReviews 10, "" %>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<%'=GetWebText("HomeFooter")%>
</div>
</div> <!-- row -->
<%
End Sub
%>