-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
86 lines (49 loc) · 2.86 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
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Questera - Questionairre :)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- node modules for dev -->
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="node_modules/animate.css/animate.min.css">
<link rel="stylesheet" type="text/css" href="node_modules/font-awesome/css/font-awesome.css">
<!-- init cdn for build-->
<!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"> -->
<!-- main css -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
</head>
<!-- defining questionaire app here -->
<body ng-app="questionaire" ng-controller="mainController" class="wow fadeInUp">
<!-- render all views here -->
<ng-view></ng-view>
<!-- node modules for development -->
<!-- angular lib -->
<script type="text/javascript" src="node_modules/angular/angular.min.js"></script>
<script type="text/javascript" src="node_modules/angular-route/angular-route.min.js"></script>
<!-- third party plugins -->
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- <script type="text/javascript" src="node_modules/jqlite/jqlite.min.js"></script> -->
<script type="text/javascript" src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="node_modules/wowjs//dist/wow.min.js"></script>
<!-- cdns for build version -->
<!-- <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular-route.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script> -->
<!-- angular app -->
<script type="text/javascript" src="app.js"></script>
<!-- services -->
<script type="text/javascript" src="services/services.js"></script>
<!-- controllers -->
<script type="text/javascript" src="controllers/controllers.js"></script>
<!-- directives -->
<script type="text/javascript" src="directives/directives.js"></script>
<!-- init wow.js -->
<script type="text/javascript">
new WOW().init();
</script>
</body>
</html>