-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (68 loc) · 2.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<!-- compiled css output -->
<link href="css/ionic.app.css" rel="stylesheet">
<!-- FONT -->
<link href="https://fonts.googleapis.com/css?family=Raleway%3A400%2C300%2C500%2C600" rel="stylesheet">
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular-sanitize.min.js"></script>
<!-- cordova script (this will be a 404 during development)
<script src="cordova.js"></script>-->
<!-- your app's js -->
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
<script src="js/app.js"></script>
<!--could not update my ionic, new version of ionic does not support version this app was written in, ai ya-->
<style>
.description-view .card .item-text-wrap{
color: #5A5A5A;
font-family: Helvetica;
}
.view-container{
background-color: #000;
}
.categoriesview-grid .list-item .button{
background-color: #fff !important;
}
</style>
</head>
<body ng-app="specmyride" ng-controller="bodyCtrl" ng-class="appTheme" class="readingLegibility_tint">
<ion-side-menus>
<ion-side-menu-content>
<!--
The nav bar that will be updated as we navigate between views.
-->
<!-- nav-title-slide-ios7 -->
<ion-nav-bar class="bar-positive">
<!--icon ion-ios7-arrow-back-->
<ion-nav-back-button class="button-icon ion-android-arrow-back" ng-click="myGoBack()">
</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 class="slide-left-right">
</ion-nav-view>
</ion-side-menu-content>
<!--Side menu-->
<ion-side-menu side="left" ng-class="appTheme">
<ng-include src="'templates/side-menu.html'"></ng-include>
</ion-side-menu>
</ion-side-menus>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74419842-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>