Advertisement
Lauda

Untitled

Jun 28th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 KB | None | 0 0
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <%@page pageEncoding="UTF-8" %>
  3.       <!-- Sidebar -->
  4.       <div class="col-md-3 col-sm-3 hidden-xs">
  5.  
  6.         <h5 class="title">Categories</h5>
  7.         <!-- Sidebar navigation -->
  8.           <nav>
  9.             <ul id="nav">
  10.             <!-- Main menu. Use the class "has_sub" to "li" tag if it has submenu. -->
  11.             <c:forEach items="${webShop.categories}" var="item">
  12.             <c:if test="${item.value.parent != null}">
  13.             <li class="has_sub"><a href="ComponentsServlet?category=${item.value.name}">${item.value.name}</a></li>
  14.             <ul>
  15.             <c:forEach items="${item.value.subcategories}" var="sub">
  16.             <li><a href="ComponentsServlet?category=${sub.name}">${sub.name}</a></li>
  17.             </c:forEach>
  18.             </ul>
  19.             </c:if>
  20.  
  21.             </c:forEach>
  22.                 </ul>
  23.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement