-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
82 lines (73 loc) · 3.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<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="Auction APP">
<meta name="author" content="Vaibhav Magon">
<link rel="icon" href="#">
<title>Auction APP</title>
<!-- Bootstrap core CSS -->
<link rel='shortcut icon' type='image/x-icon' href='client/assets/images/logo.png' />
<link href="client/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="client/assets/css/master.css" rel="stylesheet">
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Oleo+Script' rel='stylesheet' type='text/css'>
<!--<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />-->
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]> -->
<style>
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow:none;
border-radius: 0px;
background-color:whiteSmoke;
}
::-webkit-scrollbar-thumb {
border-radius: 0px;
-webkit-box-shadow: inset 1px 1px 10px #d3d3d3;
background-color:#d3d3d3;
}
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
</head>
<body ng-app="auctionApp"> <!-- id="bodyMain" -->
<div ng-include src="'client/partials/navbar.html'"></div>
<div ng-view></div>
<!-- Placed at the end of the document so the pages load faster -->
<script src="client/bower_components/jquery/dist/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.4.5/socket.io.min.js"></script>
<script src="client/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="client/bower_components/angular/angular.min.js"></script>
<script src="client/bower_components/angular-route/angular-route.min.js"></script>
<script src="client/bower_components/angular-resource/angular-resource.min.js"></script>
<script src="client/bower_components/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="client/bower_components/angular-animate/angular-animate.min.js"></script>
<script src="client/bower_components/angular-cookie/angular-cookie.min.js"></script>
<script src="client/bower_components/moment/moment.js"></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/js/materialize.min.js"></script>-->
<!-- PROGRESS BAR -->
<!--<script src="https://cdn.rawgit.com/kimmobrunfeldt/progressbar.js/0.7.0/dist/progressbar.js"></script>-->
<script src="https://cdn.rawgit.com/enyo/dropzone/v3.12.0/downloads/dropzone.js"></script>
<!-- Use edge version of lodash for throttle.cancel() -->
<script src="https://cdn.rawgit.com/lodash/lodash/49b68a7903c58876e0d9a2abd6c43746fdf3dc04/lodash.js"></script>
<!----- Angularjs Controllers and Directives to be put here -->
<script src="client/app.js"></script>
<script src="client/clientControllers/dashboard.js"></script>
<script src="client/clientControllers/login.js"></script>
<script src="client/clientControllers/navbar.js"></script>
<script src="client/factory/LoggedInCheck.js"></script>
<script src="client/directives/userWidget.js"></script>
<script src="client/directives/inventoryWidget.js"></script>
<script src="client/directives/auctionWidget.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
</body>
</html>