2023-01-18 13:09:15 +00:00
|
|
|
<!DOCTYPE html>
|
2022-12-08 15:21:59 +00:00
|
|
|
<html lang="en">
|
2023-01-18 01:25:01 +00:00
|
|
|
<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>
|
2023-01-19 16:53:18 +00:00
|
|
|
<script src="./js/public-board.js" defer></script>
|
2023-01-18 01:25:01 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="loading">
|
|
|
|
<div class="spinner">
|
|
|
|
</div>
|
2023-01-21 20:35:11 +00:00
|
|
|
<p id="loading_desc">\nLoading</p>
|
2023-01-18 01:25:01 +00:00
|
|
|
</div>
|
2023-01-11 23:18:00 +00:00
|
|
|
|
2023-01-18 01:25:01 +00:00
|
|
|
<div id="content">
|
|
|
|
<div id="header">
|
2023-01-19 16:53:18 +00:00
|
|
|
<div id="station_name">
|
|
|
|
<h1 id="stn_name" class="header-large"></h1>
|
|
|
|
</div>
|
|
|
|
<div id="header-right">
|
|
|
|
<p class="header-small">Data from:</p>
|
|
|
|
<p id="fetch_time" class="header-small">Loading...</p>
|
|
|
|
</div>
|
2023-01-18 01:25:01 +00:00
|
|
|
</div>
|
2023-01-11 23:18:00 +00:00
|
|
|
|
2023-01-21 20:24:59 +00:00
|
|
|
<div id="alerts" onclick="">
|
2023-01-20 20:02:47 +00:00
|
|
|
<div id="alerts_bar" onclick="inflateAlerts()">
|
2023-01-19 23:42:22 +00:00
|
|
|
<img id="alert_icon" src="./images/nav/alert_icon.svg" alt="">
|
2023-01-20 20:02:47 +00:00
|
|
|
<p id="alert_bar_note"></p>
|
|
|
|
<button id="alert_expand_arrow">⋁</button>
|
2023-01-21 20:24:59 +00:00
|
|
|
<div id="alerts_msg" onclick="NULL">
|
2023-01-19 23:42:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-18 01:25:01 +00:00
|
|
|
</div>
|
2023-01-11 23:18:00 +00:00
|
|
|
|
2023-01-18 11:02:29 +00:00
|
|
|
<div id="output">
|
2023-01-18 13:09:15 +00:00
|
|
|
<table>
|
2023-01-21 20:24:59 +00:00
|
|
|
<caption>Train Services</caption>
|
2023-01-18 11:02:29 +00:00
|
|
|
<tr>
|
|
|
|
<th class="name">Origin</th>
|
|
|
|
<th class="name">Dest.</th>
|
|
|
|
<th class="plat">Plat.</th>
|
|
|
|
<th class="time">Sch Arr.</th>
|
2023-01-18 13:09:15 +00:00
|
|
|
<th class="time">Exp Arr.</th>
|
2023-01-18 11:02:29 +00:00
|
|
|
<th class="time">Sch Dep.</th>
|
2023-01-18 13:09:15 +00:00
|
|
|
<th class="time">Exp Dep.</th>
|
2023-01-18 11:02:29 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2023-01-20 20:02:47 +00:00
|
|
|
<div id="no_services" class="main-notice hidden-whille-loading">
|
|
|
|
<p>There are no scheduled train services from this station</p>
|
|
|
|
</div>
|
2023-01-18 11:02:29 +00:00
|
|
|
</div>
|
|
|
|
|
2023-01-21 20:24:59 +00:00
|
|
|
<div id="ferry" class="hide-when-loading secondary-table">
|
2023-01-19 23:42:22 +00:00
|
|
|
<table>
|
2023-01-21 20:24:59 +00:00
|
|
|
<caption>Ferry Services</caption>
|
2023-01-19 23:42:22 +00:00
|
|
|
<tr>
|
|
|
|
<th class="name">Origin</th>
|
|
|
|
<th class="name">Dest.</th>
|
|
|
|
<th class="plat"></th>
|
|
|
|
<th class="time">Sch Arr.</th>
|
2023-01-20 20:48:59 +00:00
|
|
|
<th class="time">Exp Arr.</th>
|
|
|
|
<th class="time">Sch Dep.</th>
|
|
|
|
<th class="time">Exp Dep.</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2023-01-21 20:24:59 +00:00
|
|
|
<div id="bus" class="hide-when-loading secondary-table">
|
2023-01-20 20:48:59 +00:00
|
|
|
<table>
|
2023-01-21 20:24:59 +00:00
|
|
|
<caption>Bus Services</caption>
|
2023-01-20 20:48:59 +00:00
|
|
|
<tr>
|
|
|
|
<th class="name">Origin</th>
|
|
|
|
<th class="name">Dest.</th>
|
|
|
|
<th class="plat"></th>
|
|
|
|
<th class="time">Sch Arr.</th>
|
2023-01-19 23:42:22 +00:00
|
|
|
<th class="time">Exp Arr.</th>
|
|
|
|
<th class="time">Sch Dep.</th>
|
|
|
|
<th class="time">Exp Dep.</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-01-19 16:53:18 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="error_notice" class="main-notice hide-when-loading">
|
2023-01-18 01:25:01 +00:00
|
|
|
<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>
|
2022-12-19 22:32:49 +00:00
|
|
|
|
2023-01-18 01:25:01 +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>
|
|
|
|
</div>
|
|
|
|
</body>
|
2022-12-08 15:21:59 +00:00
|
|
|
</html>
|