-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en" data-ng-app="kwik">
<head>
<!-- Basic page needs -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="kwik" name="description">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title data-ng-bind="'kwiktreat | ' + $state.data.pageTitle"></title>
<!-- ASSETS -->
<link href="css/app.min.css" rel="stylesheet" />
<link href="bower_components/flexslider/flexslider.css" rel="stylesheet" />
<!--[if lt IE 9]>
<script src="bower_components/plugins/html5shiv.js"></script>
<script src="bower_components/plugins/respond.min.js"></script>
<![endif]-->
</head>
<body id="body">
<!-- BEGIN HEADER -->
<div data-ng-include="'templates/header.html'" data-ng-controller="HeaderCtrl" >
</div>
<!-- END HEADER -->
<!-- BEGIN CONTAINER -->
<div>
<div class="page-container">
<div class="page-content-wrapper">
<div class="page-content">
<!-- BEGIN ACTUAL CONTENT -->
<div ui-view class="fade-in-up">
</div>
<!-- END ACTUAL CONTENT -->
</div>
</div>
</div>
<!-- BEGIN FOOTER -->
<div data-ng-include="'templates/footer.html'" data-ng-controller="FooterCtrl">
</div>
<!-- END FOOTER -->
</div>
<!-- END CONTAINER -->
<!-- JS PLUGIN FILES -->
<script src="bower_components/angular/angular.min.js"> </script>
<script src="bower_components/angular/ocLazyLoad.min.js"> </script>
<script src="bower_components/angular/angular-ui-router.min.js"> </script>
<script src="bower_components/plugins/essentials.min.js"> </script>
<script src="bower_components/jquery/jquery-2.2.0.min.js"> </script>
<script src="bower_components/bootstrap/bootstrap.min.js"> </script>
<script src="bower_components/bootstrap/bootstrap-hover-dropdown.min.js"> </script>
<script src="bower_components/flexslider/jquery.flexslider-min.js"> </script>
<script src="bower_components/bootstrap/bootstrap-select.js"> </script>
<script src="bower_components/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-1.3.1.js"></script>
<script type="text/javascript">
function HandlePopupResult(result) {
alert("result of popup is: " + result);
}
</script>
<!-- APP'S JS FILES -->
<script src="js/main.min.js"></script>
</body>
</html>