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/vintagedoorknobs/inc-template-blog.asp
<%
' (SS,30/10/23) new blog handling page

Sub ShowBlogHeader(AHeading)
  ' no need to page heading/title just wasting space because we have panels in the two sections which are headings
  ' ShowPageTitle "Blog", "", ""
  ' page title is in the blog itself, just show the breadcrumb
  ShowPageBreadcrumb "Blog"
%>
<div id="other-pages2">
<%
End Sub

Sub ShowBlogContent(AText)
%>
  <div class="container">
    <div id="other-pages">
    <%=AText%>
    </div>
  </div>
<%
End Sub

Sub ShowBlogFooter
%>
</div> <!-- end #other-pages2 -->
<%
End Sub

Sub DoBlogPage
  Dim LBlogPostName, LContent, LHeading
  
  LBlogPostName = CleanRequestQueryString("name")
  If LBlogPostName = "" Then
    LContent = GetPageContent("Blog", LHeading)
  Else
    LContent = GetBlogPostContent(LBlogPostName, LHeading)
  End If
    
  ShowBlogHeader LHeading 

  ShowBlogContent LContent
  
  ShowBlogFooter  
End Sub

%>