-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (52 loc) · 2.06 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 ng-app="starter">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="ionic/css/ionic.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/countdown.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.12.2.min.js"></script>
<script src="ionic/js/ionic.min.js" ></script>
<script src="ionic/js/ionic.bundle.min.js" ></script>
<script src="ionic/js/ionic-angular.min.js" ></script>
<script src="ionic/js/angular/angular.min.js" ></script>
<script src="ionic/js/angular/angular-animate.min.js" ></script>
<script src="ionic/js/angular/angular-resource.min.js" ></script>
<script src="ionic/js/angular/angular-sanitize.min.js" ></script>
<script src="ionic/js/angular-ui/angular-ui-router.min.js" ></script>
<script src="js/app.js"></script>
<script src="js/MainCtrl.js"></script>
<script src="js/topicController.js"></script>
<script src="js/IntroCtrl.js"></script>
<script src="js/HomeCtrl.js"></script>
<script src="js/WhenCtrl.js"></script>
<title>Smash the Vote</title>
</head>
<body ng-controller="MainCtrl">
<!--
The nav bar that will be updated as we navigate between views.
-->
<ion-nav-bar class="bar-stable bar-positive">
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<!--
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>
<!--
Create tabs with an icon and label, using the tabs-positive style.
Each tab's child <ion-nav-view> directive will have its own
navigation history that also transitions its views in and out.
-->
<!--<ion-tabs class="tabs-icon-bottom tabs-color-active-positive">
<ion-tab title="Home" icon-off="ion-home" icon-on="ion-home" href="#/home">
<ion-nav-view name="tab-dash"></ion-nav-view>
</ion-tab>
</ion-tabs>-->
</body>
</html>