blob: 466cb076cc695e46ab83fa88ccbc5cdba625f94e (
plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<style type="text/css">
div.outer {
border: 0.2em solid #000066;
width: 55em;
}
div.display {
background-color: #0000ff;
color: white;
font-family: Sans-Serif;
font-weight: bold;
position: relative;
margin-bottom: 0;
margin-top: 0;
padding-top: 0;
padding-bottom: 0;
width: 55em;
height: 1.4em;
}
div.display div {
overflow: hidden;
position: absolute;
height: 100%;
}
div.time {
left: 0;
width: 6%;
font-size: 95%;
}
div.train {
left: 5%;
width: 9%;
background-color: white;
color: #0000ff;
font-size: 95%;
}
div.via {
left: 15%;
width: 35%;
}
div.via span {
margin-right: 0.4em;
font-size: 80%;
}
div.destination {
left: 50%;
width: 25%;
font-size: 120%;
}
div.platform {
left: 75%;
width: 5%;
}
div.info {
left: 80%;
width: 20%;
background-color: white;
color: #0000ff;
font-size: 80%;
line-height: 150%;
}
div.separator {
border-bottom: 0.1em solid #000066;
}
</style>
</head>
<body>
<div class="outer">
<TMPL_LOOP departures>
<div class="display <TMPL_IF __even__>separator</TMPL_IF>">
<div class="platform">
<TMPL_VAR platform>
</div>
<div class="time">
<TMPL_VAR time>
</div>
<div class="train">
<TMPL_VAR train>
</div>
<div class="via">
<TMPL_LOOP via>
<span><TMPL_VAR stop></span>
<TMPL_UNLESS __last__> - </TMPL_UNLESS>
</TMPL_LOOP>
</div>
<div class="destination">
<TMPL_VAR destination>
</div>
<TMPL_IF info>
<div class="info">
<TMPL_VAR info>
</div>
</TMPL_IF>
</div> <!-- display -->
</TMPL_LOOP>
</div> <!-- outer -->
</body>
</html>
|