-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
238 lines (230 loc) · 6.4 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html lang="en">
<head>
<title>Metro dashboard</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<link rel="icon" type="image/png" href="//nl.metrotime.be/wp-content/uploads/2013/12/favicon.png">
<!-- Stylesheets -->
<!-- Bootstrap -->
<link rel='stylesheet' type='text/css' href='assets/css/bootstrap/bootstrap.min.css'>
<!-- Chartist -->
<link rel='stylesheet' type='text/css' href='assets/css/chartist/chartist.min.css'>
<!-- Google Webfonts -->
<link rel='stylesheet' type='text/css' href='//fonts.googleapis.com/css?family=PT+Sans:400,700'>
<!-- Website CSS -->
<link rel='stylesheet' type='text/css' href='assets/css/site.css'>
<!-- Chartist Tooltip CSS -->
<link rel="stylesheet" type="text/css" href="bower_components/chartist-plugin-tooltip/dist/chartist-plugin-tooltip.css">
<!-- Scripts -->
<!-- jQuer v2.0.0 -->
<script type='text/javascript' src="//code.jquery.com/jquery-2.0.0.js"></script>
<!-- Bootstrap javascript -->
<script type='text/javascript' src="assets/js/bootstrap/bootstrap.min.js"></script>
<!-- Chartist -->
<script type='text/javascript' src="assets/js/chartist/chartist.min.js"></script>
<!-- Chartist Tooltip -->
<script type="text/javascript" src="bower_components/chartist-plugin-tooltip/dist/chartist-plugin-tooltip.js"></script>
<!-- Fontawesome -->
<script src="//use.fontawesome.com/104088ff60.js"></script>
</head>
<body>
<!-- .container-fluid -->
<div class="container-fluid">
<!-- .row -->
<div class="row">
<!-- .col-md-12 -->
<div class="col-md-12 col-xs-12 col-lg-12 site-header">
<!-- .icon-barometer -->
<h1><i class="icon icon-barometer"></i>Rail barometer</h1>
<!-- /.icon-barometer -->
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<!-- .col-md-12 (filter header) -->
<div class="col-md-12 col-xs-12 col-lg-12 filter-header">
<!-- h2 'show statistics for' -->
<h2>
Show statistics for
<select name="filter-form">
<option value="today">today</option>
<option value="week">last week</option>
<option value="month">last month</option>
</select>
</h2>
<!-- /h2 'show statistics for' -->
</div>
<!-- /.col-md-12 (filter-header) -->
</div>
<!-- /.row (filter-header) -->
<!-- .row (delays-header)-->
<div class="row top-buffer statistic-graphs">
<div class="col-md-12 col-xs-12 col-lg-3 title">
<h2>
<i class="icon icon-delay"></i>
Delay
</h2>
</div>
</div>
<!-- /.row -->
<!-- .row (delays-graph) -->
<div class="row">
<div class="col-md-9 col-xs-12 col-lg-9">
<div class="chart ct-chart-delays" style="height:200px;"></div>
<div class="list table-detail">
<table>
<thead>
<tr>
<th>#</th>
<th>Train</th>
<th>Delay</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>IC512 - Antwerpen - Brussel</td>
<td class="red">+ 45'</td>
</tr>
<tr>
<td>2</td>
<td>P520 - Genk - Hasselt</td>
<td class="red">+ 15'</td>
</tr>
<tr>
<td>3</td>
<td>S500 - Brussel - Antwerpen-Centraal</td>
<td class="red">+ 60'</td>
</tr>
<tr>
<td>4</td>
<td>IC1254 - Gent-Sint-Pieters - Genk</td>
<td class="red">+ 120'</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-3 col-lg-3 col-xs-12 graph-detail">
<div class="col-md-3 col-lg-3 col-xs-12">
<a href="#" class="chart selected-view">
<i class="fa fa-line-chart"></i>
</a>
<a href="#" class="list">
<i class="fa fa-list"></i>
</a>
</div>
<div class="col-md-9 col-lg-9 col-xs-7">
Now: <strong>25 trains</strong> with
<strong>204 minutes</strong> delay in total.
<br/>
<strong>3 </strong>cancellations.
</div>
</div>
</div>
<!-- /.row (delays-graph)-->
<!-- /.row -->
<div class="row top-buffer statistic-graphs">
<div class="col-md-12 col-xs-12 col-lg-12 title">
<h2>
<i class="icon icon-crowding" aria-hidden="true"></i>
Occupancy
</h2>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-md-9 col-xs-12 col-lg-9">
<div class="chart ct-chart-occupancy" style="height:200px;"></div>
<div class="list table-detail">
<table>
<thead>
<tr>
<th>#</th>
<th>Train</th>
<th>Occupancy</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>IC512 - Brussel - Genk</td>
<td>HIGH</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-3 col-xs-12 col-lg-3 graph-detail">
<div class="col-md-3 col-lg-3 col-xs-12">
<a href="#" class="chart selected-view">
<i class="fa fa-line-chart"></i>
</a>
<a href="#" class="list">
<i class="fa fa-list"></i>
</a>
</div>
<div class="col-md-9 col-lg-9 col-xs-12">
Now: <strong>12 busy trains</strong> of which <strong>3 overcrowded</strong>.
</div>
</div>
</div>
<!-- /.row-->
<!-- /.row -->
<div class="row top-buffer statistic-graphs">
<div class="col-md-12 col-xs-12 col-lg-12 title">
<h2>
<i class="icon icon-incident" aria-hidden="true"></i>
Incidents
</h2>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-md-9 col-xs-9 col-lg-9">
<div class="chart ct-chart-incidents" style="height:200px;"></div>
<div class="list table-detail">
<table>
<thead>
<tr>
<th>#</th>
<th>Incident</th>
<th>Since</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Ghlin - Bergen: signalling problem</td>
<td class="red">9h015</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-3 col-xs-12 col-lg-3 graph-detail">
<div class="col-md-3 col-lg-3 col-xs-12">
<a href="#" class="chart selected-view">
<i class="fa fa-line-chart"></i>
</a>
<a href="#" class="list">
<i class="fa fa-list"></i>
</a>
</div>
<div class="col-md-9 col-lg-9 col-xs-7">
Now: <strong>1 incident</strong>
</div>
</div>
</div>
<!-- /.row-->
</div>
<!-- /.container-fluid -->
<!-- Javascript -->
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>