-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patharrival.html
49 lines (40 loc) · 1.58 KB
/
arrival.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">Ankunft</title>
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/dark-styles.css">
<link rel="stylesheet" href="./assets/css/line-colors.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/branding/favicon.ico">
<link rel="manifest" href="/manifest.json" type="application/json" >
<meta name="theme-color" content="#000">
<meta name="robots" content="noindex">
</head>
<body class="bodyWithPopup darkbody">
<noscript> You need to enable JavaScript to run this app. </noscript>
<script src="./assets/src/pinnedPopup.js"></script>
<div id="notouch" class="notouch hidden"></div>
<nav id="navbar"></nav>
<table class="zerotable"><tr><td class="topline"><span class="aligner"><img src="./assets/icons/rail.svg" class="megaicon"><span id="stationname" class="big"></span> <span class="big bigonly disabled">Ankunft</span></span></td><td class="clockbox topline"> <span id="clock" class="big bigonly"></span></td></tr></table>
<table class="board">
<thead>
<tr class="header">
<th><b>Linie</b><br>Line</th>
<th><b>An</b><br>Arr.</th>
<th class="wide"><b>Von</b><br>From</th>
<th><b>Gleis</b><br>Track</th>
<th></th>
</tr>
</thead>
<tbody id="tableBody">
<!-- Table body will be populated dynamically with arriving trains -->
</tbody>
</table>
<script src="assets\src\script.js"></script>
<script>
fetchAndDisplayData();
</script>
</body>
</html>