2022-11-30 14:32:36 +00:00
|
|
|
<!DOCTYPE html>
|
2022-12-08 15:21:59 +00:00
|
|
|
<html lang="en">
|
2022-11-30 22:08:27 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8"/>
|
2022-12-08 15:21:59 +00:00
|
|
|
<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">
|
2023-01-18 01:25:01 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="./styles/main.css"/>
|
2023-01-21 21:59:33 +00:00
|
|
|
<link rel="icon" type="image/svg+xml" href="./images/icon.svg"/>
|
2022-12-19 22:32:49 +00:00
|
|
|
<link rel="manifest" type="application/json" href="./manifest.json"/>
|
2023-01-23 18:46:33 +00:00
|
|
|
<script src="./js/lib.main.js" defer></script>
|
2023-01-18 01:25:01 +00:00
|
|
|
<script src="./js/index.js" defer></script>
|
2022-12-08 15:21:59 +00:00
|
|
|
<title>OwlBoard</title>
|
2022-11-30 22:08:27 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-01-18 01:25:01 +00:00
|
|
|
<!-- Loading Box -->
|
|
|
|
<div id="loading">
|
|
|
|
<div class="spinner">
|
|
|
|
</div>
|
2023-01-21 20:24:59 +00:00
|
|
|
<p id="loading_desc">Loading</p>
|
2023-01-18 01:25:01 +00:00
|
|
|
</div>
|
2022-11-30 22:08:27 +00:00
|
|
|
|
|
|
|
<!-- Popup Menu -->
|
2023-01-15 20:00:18 +00:00
|
|
|
<div id="top_button" class="hide_micro">
|
2022-12-08 15:21:59 +00:00
|
|
|
<button aria-label="Menu" class="sidebar_control" id="sidebar_open_short" onclick="sidebarOpen()">☰</button>
|
|
|
|
<button aria-label="Close Menu" class="sidebar_control" id="sidebar_close_short" onclick="sidebarClose()">×</button>
|
2022-11-30 22:08:27 +00:00
|
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
|
|
<a href="/">Home</a>
|
2023-01-15 21:22:32 +00:00
|
|
|
<a href="/find-code.html">Code Search</a>
|
2023-01-17 00:42:21 +00:00
|
|
|
<a href="/settings.html">Settings</a>
|
2022-12-08 15:21:59 +00:00
|
|
|
<a href="/help.html">Help</a>
|
|
|
|
<a href="/issue.html">Report Issue</a>
|
2022-11-30 22:08:27 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Main Content Begins -->
|
|
|
|
<picture>
|
2023-01-21 21:59:33 +00:00
|
|
|
<source srcset="/images/logo/wide_logo.svg" type="image/svg+xml">
|
2023-01-26 14:39:19 +00:00
|
|
|
<source media="(max-height: 739px)" srcset="/images/logo/logo-full-200.png" type="image/png">
|
|
|
|
<source srcset="/images/logo/logo-full-250.png" type="image/png">
|
|
|
|
<img class="titleimg" src="/images/logo/logo-full-250.png" alt="OwlBoard Logo">
|
2022-11-30 22:08:27 +00:00
|
|
|
</picture>
|
|
|
|
<br>
|
2023-01-11 21:48:52 +00:00
|
|
|
<form action="board.html">
|
2023-01-17 00:42:21 +00:00
|
|
|
<input class="lookup-box" type="text" id="crs-lookup" name="stn" placeholder="Enter CRS/TIPLOC" autocomplete="off"/>
|
2023-01-11 21:48:52 +00:00
|
|
|
<br>
|
2023-01-31 12:57:08 +00:00
|
|
|
<input type="submit" value="Lookup Board" class="lookup-button" onclick="vibe()">
|
2023-01-11 21:48:52 +00:00
|
|
|
</form>
|
2022-11-30 22:08:27 +00:00
|
|
|
|
|
|
|
<h2>Quick Links</h2>
|
2023-01-18 01:25:01 +00:00
|
|
|
<div id="quick_links">
|
|
|
|
</div>
|
2022-11-30 22:08:27 +00:00
|
|
|
|
|
|
|
<div class="text-description">
|
2022-12-08 15:21:59 +00:00
|
|
|
<p>This is a development release and is under testing.</p>
|
2023-01-22 10:30:02 +00:00
|
|
|
<p>Data may be stale.</p>
|
2023-01-18 01:25:01 +00:00
|
|
|
<p>Customise your quick links on the `Settings` page.</p>
|
2022-11-30 22:08:27 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
<footer>
|
2023-02-02 19:55:54 +00:00
|
|
|
<p>Created by <a href="https://fredboniface.co.uk" target="_blank" rel="noreferrer noopener">Fred Boniface</a> - 0.0.1-dev-2023020201</p>
|
2022-11-30 22:08:27 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|