-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
85 lines (72 loc) · 2.72 KB
/
app.html
File metadata and controls
85 lines (72 loc) · 2.72 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<style>
button,.btn {outline:none !important}
</style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>ip255</title>
<!-- Bootstrap Core CSS -->
<link href="app/css/bootstrap.min.css" rel="stylesheet">
<link href="app/css/animate.css" rel="stylesheet">
<link href="app/css/font-awesome.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="app/css/sidebar.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="#">
Smart ip255
</a>
</li>
<li><a href="#subnetting" data-toggle="tab">Subnet</a></li>
<li><a href="#aggregation" data-toggle="tab">Aggregation</a></li>
<li><a href="#schema" data-toggle="tab">Schema</a></li>
<li><a href="#misc" data-toggle="tab">Misc</a></li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<button class="btn btn-default fa fa-bars" id="menu-toggle"></button>
<div class="row tab-content">
<div class="tab-pane fade in active" id="subnetting"></div>
<div class="tab-pane fade" id="aggregation"></div>
<div class="tab-pane fade " id="schema"></div>
<div class="tab-pane fade" id="misc"></div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
<!-- edit form for ip entry schemas -->
<div id="edit-form"></div>
</div>
<!-- /#wrapper -->
<!-- Jquery resolver -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- jQuery -->
<script src="app/js/jquery-2.1.3.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="app/js/bootstrap.min.js"></script>
<!-- application logic -->
<script src="app/js/app-bundle.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
$('form').on('submit',function(e){e.preventDefault();});
</script>
<script>if (window.module) module = window.module;</script>
</body>
</html>