-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (48 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
62 lines (48 loc) · 1.73 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Bazaarvoice: Changing how the world shops.</title>
<meta charset=utf-8>
<link rel="shortcut icon" href="" type="image/x-icon"/>
<!-- Styles -->
<link type="text/css" rel="stylesheet" media="all" href="styles/screen.css"/>
<!-- Javascript -->
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="scripts/earth_reviews.js"></script>
<script type="text/javascript" src="scripts/common.js"></script>
<script type="text/javascript" charset="utf-8">
google.load("earth", "1");
google.setOnLoadCallback( ER.initialize);
</script>
<script type="text/html" id="review_template" charset="utf-8">
<div class="reviewBalloon" style="width:<%=width%>px;">
<div class="image">
<img class="product-image" src="<%=product.ImageUrl%>" title="Product" alt="Product" />
</div>
<div class="description">
<img src="images/rating_<%=Rating%>_0.png" width=137 height=24 alt="Rated <%=Rating%> Stars" />
<p class="title"><%=product.Name%></p>
<p class="review">"<%=Title%>"</p>
<p class="reviewer"><%=author.DisplayName%><br/><%=location.FormattedAddress%><br/><%=date%></p>
</div>
<div class="clear"></div>
</div>
</script>
</head>
<body>
<div id='head'>
<div class="container">
<img src="images/bv_logo.png" height="60%" class="logo" alt="Bazaarvoice"/>
<h1>Changing the world, one<br/>authentic conversation at a time.</h1>
</div>
</div>
<div id="foot">
<div class="container">
</div>
</div>
<div id="fullscreencontainer"></div>
<div id="sizecontainer"></div>
<div id="content"></div>
</body>
</html>