-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 4.19 KB
/
Copy pathindex.html
File metadata and controls
91 lines (83 loc) · 4.19 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
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
91
<!doctype html>
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Madison Startup Ecosystem</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<!-- mapbox -->
<script src='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css' rel='stylesheet' />
<!-- stripe -->
<script src="https://checkout.stripe.com/checkout.js"></script>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/animate.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
<link href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet"/>
</head>
<body>
<div id="logo_wrapper">
<a target="_blank" href="http://transcend.engineering/"><img id="logo" alt="Transcend" src="/img/sticker_cutout_sm.png"/></a>
</div>
<button class="btn btn-info animated pulse delay2" id="stripe_button">Want to be on this map?</button>
<div id='legend'>
<table>
<tr>
<td>
<img data-select='0' class="legend-img" src='img/pin-m+000000.png' alt='startup'>
</td>
<td>
<span>All</span>
</td>
<td>
<img data-select='1' class="legend-img" id="startup" src='img/pin-m+006600.png' alt='startup'>
</td>
<td>
<span>Startup</span>
</td>
<td>
<img data-select='2' class="legend-img" src='img/pin-m+0511b6.png' alt='startup'>
</td>
<td>
<span>Entrepreneurial Resource</span>
</td>
<td>
<img data-select='3' class="legend-img" src='img/pin-m+6f00ae.png' alt='startup'>
</td>
<td>
<span>Incubator/Coworking Space</span>
</td>
<td>
<img data-select='4' class="legend-img" src='img/pin-m+fdff16.png' alt='startup'>
</td>
<td>
<span>Accelerator</span>
</td>
<td>
<img data-select='5' class="legend-img" src='img/pin-m+fb6d14.png' alt='startup'>
</td>
<td>
<span>Venture Capital</span>
</td>
</tr>
</table>
</div>
<div id='map'></div>
<!--<script>window.jQuery || document.write('<script src="js/vendor/jquery.min.js"><\/script>');</script>-->
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<!-- clustering -->
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js'></script>
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.css' rel='stylesheet' />
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.Default.css' rel='stylesheet' />
<script src="js/places.js"></script>
<script src="js/places.json"></script>
<script src="js/index.js"></script>
<script type="text/javascript" src="js/stripe.js"></script>
</body>
</html>