-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.69 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="resources/css/jquery-ui.css" />
<link rel="stylesheet" href="themes/humanity/theme.css" />
<link rel="stylesheet" href="resources/css/fa/font-awesome.css" />
<link rel="stylesheet" href="resources/css/bootstrap.css" />
<link rel="stylesheet" href="resources/primeui/css/core/core.css" />
<link rel="stylesheet" href="resources/primeui/css/menu/menu.css" />
<link rel="stylesheet" href="resources/primeui/css/datatable/datatable.css" />
<link rel="stylesheet" href="resources/primeui/css/paginator/paginator.css" />
<link rel="stylesheet" href="resources/css/index.css" />
<script type="text/javascript" src="resources/js/jquery.js"></script>
<script type="text/javascript" src="resources/js/jquery-ui.js"></script>
<script type="text/javascript" src="resources/js/bootstrap.js"></script>
<script type="text/javascript" src="resources/primeui/js/core/core.js"></script>
<script type="text/javascript" src="resources/primeui/js/menu/menu.js"></script>
<script type="text/javascript" src="resources/primeui/js/paginator/paginator.js"></script>
<script type="text/javascript" src="resources/primeui/js/datatable/datatable.js"></script>
<script type="text/javascript" src="resources/js/index.js"></script>
</head>
<body>
<div id="header" class="navbar-fixed-top">
<ul id="mb">
<li> <a data-icon="fa-table" onclick="tables()">Tables</a></li>
<li> <a data-icon="fa-download" onclick="_export()">Export</a></li>
</ul>
</div>
<div id="content" class="container">
<div id="leftPanel" class="col-md-4"></div>
<div id="rightPanel" class="col-md-8"></div>
</div>
<div id="footer" class="navbar-fixed-bottom"></div>
</body>
</html>