This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/static/board.html

89 lines
3.4 KiB
HTML

<html lang="en">
<head>
<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">
<title>OwlBoard - Loading</title>
<link rel="stylesheet" type="text/css" href="./styles/main.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"/>
<script src="./js/main.js" defer></script>
<script src="./js/boards.js" defer></script>
</head>
<body>
<div id="loading">
<div class="spinner">
</div>
<p>Loading</p>
</div>
<div id="content">
<div id="header">
<h1 id="station_name"></h1>
<p class="header-right">Data from:</p>
<p id="fetch_time" class="header-right">Loading...</p>
</div>
<div id="nrcc_notices" class="hidden-while-loading">
<p>
Example: Services may be subject to alterations due to heavy rain flooding the railway between Bristol Parkway and Swindon.
</p>
</div>
<div id="output">
<table id="pub-table">
<tr>
<th class="name">Origin</th>
<th class="name">Dest.</th>
<th class="plat">Plat.</th>
<th class="time">Sch Arr.</th>
<th class="time">Act Arr.</th>
<th class="time">Sch Dep.</th>
<th class="time">Act Dep.</th>
</tr>
<!-- EXAMPLE DATA FOR STYLING REASONS -->
<tr>
<td class="name">Bristol Temple Meads</td>
<td class="name">Southampton Airport Parkway</td>
<td class="plat">1</td>
<td class="time">10:57</td>
<td class="time changed">10:59</td>
<td class="time">11:02</td>
<td class="time">On Time</td>
</tr>
<tr>
<td class="name">Bristol Parkway</td>
<td class="name">Dorchester South</td>
<td class="plat changed">13</td>
<td class="time">11:07</td>
<td class="time">11:22</td>
<td class="time">11:09</td>
<td class="time changed">11:23</td>
</tr>
</table>
</div>
<div id="error_notice" class="main-notice hidden-while-loading">
<h1 class="error">Oops</h1>
<p class="error">There was an error with your request</p>
<p id="err_not_found" class="notices-hidden">The station you are searching for cannot be found</p>
<p id="err_no_data" class="notices-hidden">The station has no data. It may not be in operation yet/anymore.</p>
<p id="err_conn" class="notices-hidden">Connection Error, check your data connection. Retrying.</p>
</div>
<div id="no_services" class="main-notice hidden-whille-loading">
<p>There are no scheduled train services from this station</p>
</div>
<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>
</div>
</body>
</html>