You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>View Station - InfoTren</title>
|
||
|
|
||
|
<link rel="manifest" href="/manifest.json">
|
||
|
|
||
|
<link rel="stylesheet" href="/base.css">
|
||
|
<link rel="stylesheet" href="view-station.css">
|
||
|
|
||
|
<script src="/common/worker.js"></script>
|
||
|
<script src="/common/back.js"></script>
|
||
|
<script src="/common/items.js"></script>
|
||
|
<script src="/common/tabs.js"></script>
|
||
|
<script src="view-station.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1 id="title">View Station</h1>
|
||
|
<div id="-date" class="hidden">
|
||
|
<p></p>
|
||
|
<p class="sec" id="date"></p>
|
||
|
</div>
|
||
|
|
||
|
<div class="tabs">
|
||
|
<h3 id="tabs-arr">Arrivals</h3>
|
||
|
<h3 id="tabs-dep">Departures</h3>
|
||
|
</div>
|
||
|
|
||
|
<div id="arrivals" class="tab-view content">
|
||
|
</div>
|
||
|
|
||
|
<div id="departures" class="tab-view content">
|
||
|
</div>
|
||
|
|
||
|
<footer>
|
||
|
<div class="lsk"></div>
|
||
|
<div class="csk"></div>
|
||
|
<div class="rsk">Refresh</div>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|