%@ include file="../include/ensure_http.jsp" %>
<%@ page contentType="text/html; charset=iso-8859-1" import="java.text.*, com.aj.framework.database.composite.*" %>
<%@ taglib prefix="aj" uri="/ajstl" %>
<%
CategoryAccessor ca = new CategoryAccessor();
List cats = ca.getObjectsFromId(0, Category.PARENT_CATEGORY_ID);
%>
|
<%@ include file="../include/nav.jsp" %>
|
|
<%@ include file="../include/sidebar.jsp" %>
|
|
Home >
Store
|
| |
| Product Categories |
<% ListIterator i = cats.listIterator();
while( i.hasNext() ) { %>
<% for( int j = 0; j < 3; ++j ) {
if( i.hasNext() ) {
Category cat = (Category)i.next(); %>
|
|
<% } else { %>
|
<% } %>
<% } %>
<% } %>
|
|
|
<%@ include file="../include/footer.jsp" %>
|