File: D:/web/hyperflight/! bs3/inc-template-category-list.asp
<%
' I don't think this is used or modified for bootstrap (last changed on 17/5/2011)
' (SS,05/04/19) Change to Sub ShowCategoryListItemWithPicture to call GetCategoryImageLink instead of using getpic.asp
' --- 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)
' (SS,5/4/19) replaced getpic.asp?type=c&size=l&code= with GetCategoryImageLink
%>
<!-- START OF CATEGORY LIST ITEM -->
<a href="<%=GetCategoryLink(ACategory)%>">
<div class="category-list-item">
<img class="category-list-item-image" src="<%=GetCategoryImageLink(ACategory, "l")%>" 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 ---'
%>