summaryrefslogtreecommitdiffstats
path: root/warehouse/src/main/webapp/WEB-INF/pages/navigationDialog.jsp
blob: afa95c14100be41c6cb6e5829ac834468b7bc75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>