-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopNav.jsp.bak
31 lines (30 loc) · 1.21 KB
/
topNav.jsp.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<div class="container top-brand">
<nav class="navbar navbar-default">
<div class="navbar-header">
<div class="sidebar-header"><h3><a href="${pageContext.request.contextPath}/index.jsp">后台管理系统</a></h3>
</div>
</div>
<ul class="nav justify-content-end">
<li class="nav-item">
<a class="nav-link">
<span title="Fullscreen" class="ti-fullscreen fullscreen"></span>
</a>
</li>
<li class="nav-item">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true"
aria-expanded="false">
<span class="ti-user"></span>
</a>
<div class="dropdown-menu lochana-box-shadow2 profile animated flipInY">
<h5>John Willing</h5>
<a class="dropdown-item" href="#" onclick="toFront()">
<span class="ti-power-off"></span> 跳到前台</a>
<a class="dropdown-item" href="#" onclick="logout()">
<span class="ti-power-off"></span> 退出</a>
</div>
</li>
</ul>
</nav>
</div>