-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (79 loc) · 2.95 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
90
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Freebase Places</title>
<link rel="stylesheet" type="text/css"
href="http://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="cardwrap">
<div class="card">
<div class="left">
<img class="image" src="" width="112" height="112">
</div>
<div class="right">
<h1 class="name">
This is card title
</h1>
<h2 class="notableFor">Subtitle</h2>
<p class="description">Description</p>
</div>
<div class="section namedAfter optional">
Named after <a class="" href=""></a>
</div>
<div class="section films optional">
Featured in <a class="film" href=""></a>
</div>
<a class="action" href="">Action text</a>
</div>
<div class="places-card">
<div class="left">
<img class="image" src="" width="112" height="112">
</div>
<div class="right">
<h1 class="name">
This is card title
</h1>
<p class="address">Subtitle</p>
<p class="phone"></p>
<p> Price range: <span class="price"></span></p>
<p> Rating: <span class="rating"></span></p>
<p> <span class="reviews-number"></span> reviews</p>
</div>
<a class="action" href="">Action text</a>
</div>
</div>
<div id="footer">
<div id="flash" class="info"></div>
<div>
<h1>Freebase Places</h1>
<p>This map combines geolocated restaurants from
<a href="http://www.freebase.com">Freebase</a> and
<a href="https://developers.google.com/places/">Google Places API</a>.
</p>
<p>
<img src="http://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-poi.png&scale=0.5">
Restaurant found in Freebase
<img src="http://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-waypoint-blue.png&scale=0.5">
Restaurant found in Places API
<img src="http://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-ad.png&scale=0.5">
Restaurant found in Places API and in Freebase (via Freebase Reconcile API)
</p>
<a href="/">
<img src="https://raw.github.com/github/media/master/octocats/blacktocat-32.png" class="github">
</a>
</div>
</div>
<div id="map-canvas"></div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://beebole.com/pure/wp-content/themes/BeeBole-pure/libs/pure.js"></script>
<script src="js/freebase.js"></script>
<script src="js/cards.js"></script>
<script src="js/ui.js"></script>
</body>
</html>