File: D:/web/hyperflight/! bs5/inc-template-page-content.asp
<%
' (SS,27/9/11) new template to show page content, does away with having about, customer-info, how to order, links, faq etc. templates
' (SS,1/9/14) added ShowPageTitle replacing existing div, added container divs
' (SS,22/6/17) remove the container divs which were shifting things too far to the right
' (SS,3/10/20) added 2 new parameters to call to ShowPageTitle
' (SS,9/7/26) Bootstrap 5, replaced id="other-pages" with class="standard-page"
Sub ShowPageContent(APageName)
Dim AHeading, AText
AText = GetPageContent(APageName, AHeading)
%>
<%ShowPageTitle APageName, AHeading, ""%>
<div class="standard-page">
<%=AText%>
</div>
<%
End Sub
%>