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/castironradiatorcentre/inc-template-category-list.asp
<%
Sub DummyHTMLHeaderToFoolDreamweaverCategoryList
%>
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body class=body>
<%
End Sub

' --- START OF CATEGORY LIST TEMPLATES --- '

Const MAX_CATEGORY_LIST_COLUMNS = 3

Sub ShowCategoryListHeader
%>
<!-- START OF CATEGORY LIST -->       
      <div id="category-list">
				<div id="category-list-content">
<%
End Sub

Sub ShowCategoryListItem(ACategory, ADescription, AIsStartItem, AIsEndItem)
%>
<!-- START OF CATEGORY LIST ITEM -->
          <a href="<%=GetCategoryLink(ACategory)%>">
          <div class="category-list-item">
            <div class="category-list-item-image"></div>          
            <div class="category-list-item-title"><h2><%=ACategory%></h2></div>          
          </div>
          </a>
<!-- END OF CATEGORY LIST ITEM -->
<%
End Sub

Sub ShowCategoryListItemWithPicture(ACategory, ADescription, AIsStartItem, AIsEndItem)
%>
<!-- START OF CATEGORY LIST ITEM -->
          <a href="<%=GetCategoryLink(ACategory)%>">
          <div class="category-list-item">   
            <img class="category-list-item-image" src="getpic.asp?type=c&size=l&code=<%=Server.URLEncode(ACategory)%>" width="160" height="160" alt="<%=ACategory%>" />
            <div class="category-list-item-title"><h2><%=ACategory%></h2></div>          
          </div>
          </a>
<!-- END OF CATEGORY LIST ITEM -->
<%
End Sub

Sub ShowCategoryListStartRow
End Sub

Sub ShowCategoryListEndRow
End Sub

Sub ShowCategoryLineSeparator
End Sub

Sub ShowCategoryListMissingColumns(ACount)
End Sub

Sub ShowCategoryListFooter
%>
           <div class="clear"></div>
        </div><!-- end #category-list-content -->
        <div class="clear"></div> 
      </div><!-- end #category-list -->
<!-- END OF CATEGORY LIST -->
<%
End Sub


' --- END OF CATEGORY LIST TEMPLATES ---'


Sub DummyHTMLFooterToFoolDreamweaverCategoryList
%>
</body>
</html>
<%
End Sub
%>