53 lines
1.8 KiB
Plaintext
53 lines
1.8 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
<!-- lnb -->
|
|
<div class="lnb">
|
|
<p class="title">
|
|
<c:forEach var="list" items="${whereAmIList}" varStatus="status">
|
|
<c:if test="${list.depth eq '1'}">
|
|
<c:out value="${list.menuNm}"/>
|
|
</c:if>
|
|
</c:forEach>
|
|
</p>
|
|
<ul class="lnb_menu">
|
|
|
|
<c:forEach var="listDep2" items="${whereAmIList}" varStatus="status1">
|
|
<c:if test="${listDep2.depth eq '2'}">
|
|
<li <c:if test="${whereAmIVO_dep2 eq listDep2.menuNo}">class="active"</c:if>>
|
|
<a href="${listDep2.menuType ne 'M' ? listDep2.url : '#none'}" class="lnb_menu_title" >
|
|
<c:out value="${listDep2.menuNm}"/>
|
|
<c:forEach var="depth2CntList" items="${depth2CntList}" varStatus="status4">
|
|
<c:if test="${
|
|
depth2CntList.menuNo eq listDep2.menuNo
|
|
&& depth2CntList.cnt gt 0
|
|
}">
|
|
<i class="icon lnb_slide_toggle"></i>
|
|
</c:if>
|
|
</c:forEach>
|
|
</a>
|
|
<c:forEach var="depth2CntList" items="${depth2CntList}" varStatus="status4">
|
|
<c:if test="${
|
|
depth2CntList.menuNo eq listDep2.menuNo
|
|
&& depth2CntList.cnt gt 0
|
|
}">
|
|
<ul class="lnb_sub_menu">
|
|
<c:forEach var="listDep3" items="${whereAmIList}" varStatus="status3">
|
|
<c:if test="${listDep3.upperMenuId eq listDep2.menuNo}">
|
|
<li>
|
|
<a href="${listDep3.url}" <c:if test="${listDep3.menuNo eq menuManageVO.menuNo}">class="active"</c:if>>
|
|
<c:out value="${listDep3.menuNm}"/>
|
|
</a>
|
|
</li>
|
|
</c:if>
|
|
</c:forEach>
|
|
</ul>
|
|
</c:if>
|
|
</c:forEach>
|
|
</li>
|
|
</c:if>
|
|
</c:forEach>
|
|
</ul>
|
|
</div>
|
|
<!-- //lnb --> |