-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (60 loc) · 2.77 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
<!DOCTYPE html>
<html manifest="/appcache">
<head>
<title>The Public Art App</title>
<link rel="stylesheet" href="stylesheets/jquery.mobile-1.0a4.1.min.css" />
<link rel="stylesheet" href="stylesheets/muralapp.css" />
<script type="text/javascript" src="javascripts/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="javascripts/infobox_packed.js" charset="utf-8"></script>
<script type="text/javascript" src="javascripts/muralapp.js"></script>
<script type="text/javascript" src="javascripts/details.js"></script>
<script type="text/javascript" src="javascripts/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>
<!-- Map -->
<div data-role="page" id="map-page">
<div data-role="header" data-position="inline" data-backbtn="false">
<a href="#list-page" data-transition="flip">List</a>
<h1>PUBLIC ART FINDER</h1>
<a href="javascript:void(0);" class="find-me">Find Me</a>
</div>
<div data-role="content" id="map-container">
<div id="map-target"></div>
</div>
</div>
<!-- List -->
<div data-role="page" id="list-page">
<div data-role="header" data-position="inline" data-backbtn="false">
<a href="#map-page" data-transition="flip">Map</a>
<h1>PUBLIC ART FINDER</h1>
<a href="javascript:void(0);" class="find-me">Find Me</a>
</div>
<div data-role="content" id="list-container"></div>
</div>
<!-- about page -->
<div data-role="page" id="about-page">
<div data-role="header" data-position="inline" data-backbtn="false"></div>
<div data-role="content" id="about-container">
<span id="city_name" class="about-title">San Francisco</span>
<span class="about-title">Public</span>
<span class="about-title">Art</span>
<span class="about-title">Finder</span>
<div class="about-credit">Brought to you by<br /><span id="brought_to_you_by">SF Arts Commission</span></div>
</div>
</div>
<script type="text/javascript">
// I wrapped the analytics code in a function so that it would only run after the config vars are loaded
function setupGA() {
var _gaq = _gaq || [];
_gaq.push(['_setAccount', config.google_analytics]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
}
</script>
</body>
</html>