HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/hyperflight/! bs5/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, ""
' (SS,22/5/26) Bootstrap 5 version for HF

Sub ShowPage_home
%> 
  <div class="home-banner">
    <% ShowBanner(True) %>
  </div>
  
  <div class="home-content">
    <%=GetWebText("HOME")%>

    <% CustomShowHolidayNotice "H", 0 %>

    <hr class="home-section-divider">
  </div>
              
<%
' 12 newest (or recently added to stock) products shown instead of featured
ShowNewProducts 24, ""
%>

  <div class="home-extra-content mt-2 mb-3">
    <div class="row g-4">
      <div class="col-lg-6 col-md-6">

        <% ShowHighlights %>

      </div>

<% 
' (SS,28/5/26) removed separate ShowHomeLatestReviews, now calls ShowRecentReviews directly
' ShowRecentReviews which calls ShowRecentReviewsNormal is in apputils.asp and calls following in inc-template-reviews.asp (a custom template)
' ShowRecentReviewsEmpty, ShowRecentReviewsHeader, ShowRecentReviewsItem, ShowRecentReviewsFooter
' (SS,18/6/24) WT for with title, EA to exclude anonymous
'  ShowRecentReviews 9, "WT,EA"
' (SS,15/5/26) separated from main routine, new version for Bootstrap 5 
  ShowRecentReviews 10, ""
%>

    </div>
  </div>

<%
' (SS,22/5/26) home footer text not in use currently
'<div class="container">
'=GetWebText("HomeFooter")
'</div>
%>
  
<%
End Sub

%>