summaryrefslogtreecommitdiffstats
path: root/warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp')
-rw-r--r--warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp22
1 files changed, 22 insertions, 0 deletions
diff --git a/warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp b/warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp
new file mode 100644
index 0000000..afa95c1
--- /dev/null
+++ b/warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp
@@ -0,0 +1,22 @@
+<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%
+String path = request.getContextPath();
+String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path;
+%>
+<script src="<%=basePath%>/js/constant.js"></script>
+<div>${breadcrumb.name}</div>
+<nav aria-label="breadcrumb">
+ <ol class="breadcrumb">
+ <c:forEach var="breadcrumb" items="${appInfo.breadcrumb}">
+ <c:choose>
+ <c:when test="${not breadcrumb.current}">
+ <li class="breadcrumb-item"><a href="javascript:void(0);"onclick="Commons.showContent('<%=basePath%>/${breadcrumb.url}/')">${breadcrumb.name}</a></li>
+ </c:when>
+ <c:otherwise>
+ <li class="breadcrumb-item active" aria-current="page">${breadcrumb.name}</li>
+ </c:otherwise>
+ </c:choose>
+ </c:forEach>
+ </ol>
+</nav>