-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
89 lines (75 loc) · 2.15 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
87
88
89
<!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 >
<link href="lib/ionic/css/ionic.css"
rel="stylesheet" >
<link href="css/style.css"
rel="stylesheet" >
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js" ></script >
<!-- cordova script (this will be a 404 during development) -->
<script src="lib/ngCordova/dist/ng-cordova.js" ></script >
<script src="cordova.js" ></script >
<!-- your app's js -->
<script src="js/app.js" ></script >
<script src="js/controllers.js" ></script >
<script src="js/services.js" ></script >
<script src="js/filters.js" ></script >
</head >
<body ng-app="caffeinehit" >
<ion-pane ng-controller="YelpController" >
<ion-header-bar class="bar-dark" >
<h1 class="title" >
<img src='img/coffee-bean-icon.png' />
<span >CaffeineHit</span >
</h1 >
</ion-header-bar >
<ion-content scroll="false" >
</ion-content >
</ion-pane >
</body >
</html >
<!--
Template for the InfoWindow component
<info-window
id="marker-info" >
<div ng-non-bindable="" >
<div class="contents" >
<img ng-src="{{yelp.cafe.image_url}}"
alt="" />
<h4 >{{yelp.cafe.name}}</h4 >
<p >{{yelp.cafe.snippet_text}}</p >
<div class="row" >
<div class="col" >
<p class="address" >
<i class="ion ion-ios-location" ></i >
{{yelp.cafe.location.display_address | join:", "}}
</p >
</div >
<div class="col" >
<p class="distance" >
<i class="ion ion-ios-navigate" ></i >
{{yelp.cafe.distance | number:"0"}}m
</p >
<p class="rating" >
<i class="ion ion-star" ></i >
{{yelp.cafe.rating}}
<i class="ion ion-person" ></i >
{{yelp.cafe.review_count}}
</p >
</div >
</div >
<div class="button button-small button-assertive"
ng-click="openDirections(yelp.cafe)">Get Directions</div >
</div >
</div >
</info-window >
-->