2022-12-08 15:21:59 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-12-19 23:52:27 +00:00
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="description" content="OwlBoard - Live train departures for traincrew."/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="application-name" content="OwlBoard">
|
|
|
|
<meta name="author" content="Frederick Boniface">
|
|
|
|
<meta name="theme-color" content="#155bb7">
|
2022-12-08 15:21:59 +00:00
|
|
|
<title id="pgTitle">OwlBoard - Loading</title>
|
2023-01-11 21:48:52 +00:00
|
|
|
<script src="./js/board.js"></script>
|
2022-12-19 22:32:49 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="./styles/style.css"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="./styles/boards.css"/>
|
|
|
|
<link rel="icon" type="image/png" href="./images/logo/logo-sq-256.png"/>
|
|
|
|
<link rel="manifest" type="application/json" href="./manifest.json"/>
|
2022-12-08 15:21:59 +00:00
|
|
|
</head>
|
2022-12-19 22:32:49 +00:00
|
|
|
<body>
|
2022-12-19 22:54:23 +00:00
|
|
|
<div id="content">
|
2022-12-19 23:52:27 +00:00
|
|
|
<div id="header">
|
2023-01-09 15:05:17 +00:00
|
|
|
<h1 id="station_name"></h1>
|
2022-12-20 12:45:31 +00:00
|
|
|
<p class="header-right">Data from:</p>
|
|
|
|
<p id="fetch_time" class="header-right">Loading...</p>
|
2022-12-19 23:52:27 +00:00
|
|
|
</div>
|
2023-01-11 23:18:00 +00:00
|
|
|
|
|
|
|
<div id="nrcc_notices" class="hidden-while-loading">
|
2023-01-12 22:15:38 +00:00
|
|
|
<p>
|
|
|
|
Services may be subject to alterations due to heavy rain flooding the railway between Bristol Parkway and Swindon.
|
|
|
|
</p>
|
2023-01-11 23:18:00 +00:00
|
|
|
</div>
|
|
|
|
|
2022-12-19 22:54:23 +00:00
|
|
|
<div id="loading">
|
|
|
|
<div class="spinner">
|
|
|
|
</div>
|
2023-01-11 23:18:00 +00:00
|
|
|
<p>Loading</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="error_notice" class="hidden-unless-error">
|
|
|
|
<h1 class="error">Oops</h1>
|
|
|
|
<p class="error">There was an error with your request</p>
|
|
|
|
<p id="err_not_found">The station you are searching for cannot be found</p>
|
|
|
|
<p id="err_no_data">The station has no data. It may not be in operation yet/anymore.</p>
|
|
|
|
<p id="err_conn">Connection Error, check your data connection. Retrying.</p>
|
2022-12-19 22:54:23 +00:00
|
|
|
</div>
|
2022-12-19 22:32:49 +00:00
|
|
|
|
2022-12-19 22:54:23 +00:00
|
|
|
<div id="output">
|
2022-12-19 22:32:49 +00:00
|
|
|
|
2022-12-19 22:54:23 +00:00
|
|
|
</div>
|
2022-12-19 23:52:27 +00:00
|
|
|
<div id="footer">
|
|
|
|
<picture>
|
|
|
|
<source srcset="./images/nre/nre-powered_200w.webp" type="image/webp">
|
|
|
|
<img id="nre_logo" src="./images/nre/nre-powered_200w.webp" alt="Powered by National Rail Enquiries">
|
|
|
|
</picture>
|
|
|
|
</div>
|
2022-12-19 22:32:49 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
2022-12-08 15:21:59 +00:00
|
|
|
</html>
|