File: D:/web/coventrydemolition/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,5/10/20) added 2 new parameters to call to ShowPageTitle
' (SS,28/1/26) removed two container divs that were causing shift to the right issue
Sub ShowPageContent(APageName)
Dim AHeading, AText
AText = GetPageContent(APageName, AHeading)
%>
<%ShowPageTitle AHeading, "", ""%>
<div id="other-pages">
<%=AText%>
</div>
<%
End Sub
%>