-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 2.67 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
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
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<!-- Meta-Information -->
<title>EPStack Administration Panel</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="EPStack Administration Panel">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Vendor: Bootstrap Stylesheets http://getbootstrap.com -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- Our Website CSS Styles -->
<link rel="stylesheet" href="css/main.css">
</head>
<body ng-app="clientApp">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please upgrade
your browser to improve your experience.</p>
<![endif]-->
<!--<div ng-include='"templates/header.html"'></div>-->
<div ng-view style="padding-top:81px;padding-bottom:31px;height:100%"></div>
<!--<div ng-include='"templates/footer.html"'></div>-->
<!-- Vendor: Javascripts -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<!-- Our Website Javascripts -->
<script src="js/main.js"></script>
<script src="js/dashboard.js"></script>
<script src="js/hq.js"></script>
<script src="js/systemservices.js"></script>
<script src="js/usermanagement.js"></script>
<script src="js/configfiles.js"></script>
<script src="js/notifications.js"></script>
<script src="js/about.js"></script>
<script type="text/javascript" src='bower_components/moment/moment.js'></script>
<script type="text/javascript" src='bower_components/moment-timezone/builds/moment-timezone-with-data.js'></script>
<script type="text/javascript" src='bower_components/chosen/chosen.jquery.min.js'></script>
<script type="text/javascript" src='bower_components/lodash/lodash.min.js'></script>
<script type="text/javascript" src='bower_components/angular-timezone-selector/dist/angular-timezone-selector.js'></script>
</body>
</html>