-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexus.html
50 lines (50 loc) · 1.7 KB
/
nexus.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>neXus</title>
<meta name="description"content="mobile first, app, web app, responsive, admin dashboard, flat, flat ui">
<meta name="viewport"content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"type="text/css"/>
<link rel="stylesheet"href="http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"type="text/css"/>
<link rel="stylesheet"href="css/nexus.css"type="text/css"/>
<!--[if lt IE 9]> <script src="js/ie/respond.min.js" cache="false"></script> <script src="js/ie/html5.js" cache="false"></script> <script src="js/ie/excanvas.js" cache="false"></script> <![endif]-->
</head>
<body>
<header>
<span class="fa fa-bars collapser"></span>
neXus
</header>
<div class="sidebar">
<ul>
<li class="active">
xxx
</li>
<li>
zzz
</li>
</ul>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
</div>
</div>
</div><!-- /container -->
</body>
<script src="js/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/floatlabels.js"></script>
<script>
$(document).ready(function () {
$('.floatlabel').floatlabel();
});
</script>
<script>
$(document).ready(function(){
$(".collapser").click(function () {
$(".sidebar,header,.logo").toggleClass("collapsed");
});
});
</script>
</html>