This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
web/index.html

74 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="OwlBoard - Live train departures, PIS codes & reference data 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="#00b7b7">
<link rel="apple-touch-icon" href="./images/app-icons/any/apple-192.png">
<link rel="stylesheet" href="./styles/main.css">
<link rel="icon" type="image/svg+xml" href="./images/icon.svg">
<link rel="manifest" type="application/json" href="./manifest.json">
<script src="./js/lib.main.js" defer></script>
<script src="./js/index.js" defer></script>
<title>OwlBoard</title>
</head>
<body>
<!-- Loading Box -->
<div id="loading">
<div class="spinner">
</div>
<p id="loading_desc">Loading</p>
</div>
<!-- Popup Menu -->
<div id="top_button" class="hide_micro">
<picture class="sidebar_control" id="sidebar_open_short" onclick="sidebarOpen()">
<source srcset="./images/nav/hamburger.svg" type="image/svg+xml">
<img aria-label="Menu" src="./images/nav/hamburger_40.png" alt="Open menu">
</picture>
<picture class="sidebar_control" id="sidebar_close_short" onclick="sidebarClose()">
<source srcset="./images/nav/close.svg" type="image/svg+xml">
<img aria-label="Close Menu" src="./images/nav/close-40.png" alt="Close menu">
</picture>
</div>
<div id="sidebar">
<a href="./">Home</a>
<a href="./find-code.html">Code Search</a>
<a href="./pis.html">PIS Codes</a>
<a href="./settings.html">Settings</a>
<a href="./help.html">Help</a>
<a href="./issue.html">Report Issue</a>
</div>
<!-- Main Content Begins -->
<picture>
<source srcset="./images/logo/wide_logo.svg" type="image/svg+xml">
<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">
</picture>
<br>
<form action="board.html">
<input class="lookup-box" type="text" id="crs-lookup" name="stn" placeholder="Enter CRS/TIPLOC" autocomplete="off">
<br>
<input type="submit" value="Lookup Board" class="lookup-button" onclick="vibe('ok')">
</form>
<h2>Quick Links</h2>
<div id="quick_links">
</div>
<div class="text-description">
<p>New feature: <a href="./pis.html">Find PIS by Headcode</a></p>
<p>Later this month: New website &amp; Staff Departure Boards</p>
<p>Customise your quick links on the <a href="./settings.html">Settings</a> page.</p>
</div>
<!-- Footer -->
<footer>
<p>&copy; Fred Boniface 2023 - <a href="./stats.html"><span id="ver_str">???</span></a></p>
</footer>
</body>
</html>