forked from mdreid/dinkylink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoNY.html
95 lines (76 loc) · 4.15 KB
/
toNY.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
91
92
93
94
95
<!DOCTYPE html>
<!--[if IEMobile 7 ]> <html class="no-js iem7"> <![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>DinkyLink</title>
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="cleartype" content="on">
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="apple-touch-icon" href="img/touch/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/touch/apple-touch-icon-76.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/touch/apple-touch-icon-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/touch/apple-touch-icon-152.png">
<!-- startup needs to be fixed. see original boilerplate maybe?-->
<link rel="apple-touch-startup-image" href="img/startup/startup.png">
<!--google web fonts. This doesn't work on android. wtf. -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:700italic,800italic,400,400italic,700,600,800' rel='stylesheet' type='text/css'>
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="img/touch/apple-touch-icon-144.png">
<meta name="msapplication-TileColor" content="#EFC164">
<!-- For iOS web apps. Delete if not needed. https://github.com/h5bp/mobile-boilerplate/issues/94 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="">
<!-- This script prevents links from opening in Mobile Safari. https://gist.github.com/1042026 -->
<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body class="times-body">
<!-- Add your site or application content here -->
<script src="js/vendor/zepto.min.js"></script>
<script src="js/helper.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
<header>
<div><h5>Princeton to NYC</h5></div>
</header>
<table>
<thead>
<tr>
<th><p>Princeton<br>Depart</p></th>
<th><p>Princeton Junction<br>Arrive</p></th>
<th><p>Princeton Junction<br>Depart</p></th>
<th><p>NYC<br>Arrive</p></th>
</tr>
<!--
<tr><h6>Depart<br>Princeton</h6></tr>
<tr><h6>Arrive<br>Princeton Junction</h6></tr>
<tr><h6>Depart<br>Princeton Junction</h6></tr>
<tr><h6>Arrive<br>NYC</h6></tr>
-->
</thead>
<tr></tr>
<tbody>
{% for i in range(origin|length) %}
<tr>
<td><p>{{ origin[i] }}</p></td>
<td><p>{{ transferarrive[i] }}</p></td>
<td><p>{{ transferdepart[i] }}</p></td>
<td><p>{{ destination[i] }}</p></td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>