-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (38 loc) · 1.93 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
<!DOCTYPE html>
<html ng-app="YourApp">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Ionic Responsive Calendar</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<script src="js/jquery-1.9.1.js" type="text/javascript"></script>
<link href="lib/ionic/css/ionic.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/calendar.css"/>
<link href="css/general.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- ionic/angularjs js -->
<script src="js/ionic.bundle.js"></script>
<!-- your app's js -->
<!-- main app js -->
<script src="js/angular-1.4.4.min.js"></script>
<script src="js/ui-bootstrap-tpls-0.10.0.js"></script>
<!--<script src="js/angular-ios9-uiwebview.patch.js"></script>-->
<script src="js/controllers.js"></script>
<script src="js/calendar-tpls.js"></script>
<script src="js/data.js"></script>
<!-- common js -->
<script src="js/app.js"></script>
<script src="js/router.js"></script>
<script src="js/directives.js"></script>
<!-- your app's js -->
</head>
<body>
<!--
The views will be rendered in the <ion-nav-view> directive below
Templates are in the /templates folder (but you could also
have templates inline in this html file if you'd like).
-->
<ion-nav-view></ion-nav-view>
</body>
</html>