2022-07-13 00:33:59 +03:00
|
|
|
<!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>InfoTren</title>
|
|
|
|
|
2022-08-14 11:31:33 +02:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
|
2022-07-13 00:33:59 +03:00
|
|
|
<link rel="stylesheet" href="/base.css">
|
2023-09-01 02:39:41 +03:00
|
|
|
<link rel="stylesheet" href="/base.dark.css">
|
2022-07-13 00:33:59 +03:00
|
|
|
|
2022-09-20 00:14:16 +03:00
|
|
|
<script src="/common/worker.js"></script>
|
|
|
|
<script src="/common/items.js"></script>
|
2022-12-27 19:08:42 +02:00
|
|
|
<script src="/common/trainId.js"></script>
|
|
|
|
<script src="index.js"></script>
|
2022-07-13 00:33:59 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-22 09:55:36 +01:00
|
|
|
<header>
|
|
|
|
<div class="left"></div>
|
|
|
|
<h1>InfoTren</h1>
|
|
|
|
<div class="right"></div>
|
|
|
|
</header>
|
|
|
|
<div class="header-placeholder"></div>
|
2022-07-13 00:33:59 +03:00
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<ul>
|
2023-01-22 09:21:00 +01:00
|
|
|
<li id="routes-li"><a class="items" href="route.html">Train routes</a></li>
|
2022-12-27 19:08:42 +02:00
|
|
|
<li id="my-train-li"><a class="items" href="train.html">My train</a></li>
|
|
|
|
<li id="station-arr-dep-li"><a class="items" href="station.html">Station departures/arrivals</a></li>
|
2022-07-13 00:52:20 +03:00
|
|
|
<li><a class="items" href="about.html">About</a></li>
|
2022-07-13 00:33:59 +03:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
2022-07-13 01:12:36 +03:00
|
|
|
<div class="lsk"></div>
|
2022-07-13 00:33:59 +03:00
|
|
|
<div class="csk">Select</div>
|
2022-07-13 01:12:36 +03:00
|
|
|
<div class="rsk"></div>
|
2022-07-13 00:33:59 +03:00
|
|
|
</footer>
|
|
|
|
</body>
|
2022-08-14 11:31:33 +02:00
|
|
|
</html>
|