-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
57 lines (45 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>The Tube Map - Made in SVG and RaphaelJS</title>
<meta name="generator" content="TextMate http://macromates.com/">
<meta name="author" content="Ben Barnett">
<!-- Date: 2010-08-02 -->
<!-- include CSS reset and basic content formatting (from Yahoo CSS library) -->
<link type="text/css" rel="stylesheet" href="styles/yui/reset-min.css">
<link type="text/css" rel="stylesheet" href="styles/yui/fonts-min.css">
<link type="text/css" rel="stylesheet" href="styles/yui/base-min.css">
<link type="text/css" rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div id="mask">
<div id="wrapper">
<div id="map"></div>
</div>
</div>
<div id="copyleft">
This is in no way associated with TFL.<br>
Made by <a href="http://benbarnett.net" rel="me">Ben Barnett</a> with <a href="http://raphaeljs.com/">RaphaelJS</a><br><br>
<a href="https://twitter.com/benpbarnett" rel="me" class="twitter-follow-button" data-show-count="false">Follow @benpbarnett</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<a href="http://github.com/benbarnett/SVG-Tube-Map"><img style="position: fixed; top: 0; left: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub" /></a>
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<script type="text/javascript" charset="utf-8" src="scripts/contrib/raphael-min.js"></script>
<script type="text/javascript" charset="utf-8" src="scripts/src/bb.tl.lines.js"></script>
<script type="text/javascript" charset="utf-8" src="scripts/src/bb.tl.stations.js"></script>
<script type="text/javascript" charset="utf-8" src="scripts/src/bb.tl.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-8825585-11']);
_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>