File: D:/web/circ.itp/inc-template-recently-viewed.asp
<%
' (SS,12/6/09) new template for recently viewed items, based on inc-template-best-sellers.asp
' (SS,26/8/14) modified for Bootstrap
' (SS,23/5/24) modified for Bootstrap 5 (replaced panel with card)
' (SS,30/5/24) due to change in structured removed call i.e. bottom line If Not ForProductList Then ShowRecentlyViewed
' otherwise it syntax error results due to sub being defined within a sub, template now included inc-main.asp
' --- START OF RECENTLY VIEWED TEMPLATES --- '
Sub ShowRecentlyViewedEmpty
' html to show if no recently viewed to go here '
%>
<%
End Sub
Sub ShowRecentlyViewedHeader
%>
<!-- START OF RECENTLY VIEWED -->
<div class="mb-3">
<%
ShowSectionHeading "Recently viewed", ""
End Sub
Sub ShowRecentlyViewedItem(ANumber, AProductCode, AProductName)
%>
<!-- START OF RECENTLY VIEWED ITEM -->
<a href="<%=GetProductLink(AProductCode)%>" title="<%=AProductName%>"><img class="recently-viewed-image" src="<%=GetProductImageLink(AProductCode,"s")%>" width="100" height="100" alt="<%=AProductCode%>" /></a>
<!-- END OF RECENTLY VIEWED ITEM -->
<%
End Sub
Sub ShowRecentlyViewedFooter
%>
</div>
<!-- END OF RECENTLY VIEWED -->
<%
End Sub
' --- END OF RECENTLY VIEWED TEMPLATES --- '
%>