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/index.html

70 lines
2.5 KiB
HTML
Raw Normal View History

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">
<link rel="stylesheet" type="text/css" href="./styles/main.css"/>
<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"/>
<script src="./js/main.js" defer></script>
<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>
<!-- Loading Box -->
<div id="loading">
<div class="spinner">
</div>
<p id="loading_desc">Loading</p>
</div>
2022-11-30 22:08:27 +00:00
<!-- Popup Menu -->
<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()">&#9776;</button>
<button aria-label="Close Menu" class="sidebar_control" id="sidebar_close_short" onclick="sidebarClose()">&times;</button>
2022-11-30 22:08:27 +00:00
</div>
<div id="sidebar">
<a href="/">Home</a>
<a href="/find-code.html">Code Search</a>
<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>
<source srcset="/images/logo/wide_logo.svg" type="image/svg+xml">
<source srcset="/images/logo/logo-full-256.webp" type="image/webp">
<img class="titleimg" src="/images/logo/logo-full-256.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">
<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>
<input type="submit" value="Lookup Board" class="lookup-button">
</form>
2022-11-30 22:08:27 +00:00
<h2>Quick Links</h2>
<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>
<p>Departure boards do not yet work and data may be stale.</p>
<p>Customise your quick links on the `Settings` page.</p>
2022-11-30 22:08:27 +00:00
</div>
<!-- Footer -->
<footer>
<p>Created by <a href="https://fredboniface.co.uk" target="_blank" rel="noreferrer noopener">Fred Boniface</a> - v0.0.1-devel</p>
2022-11-30 22:08:27 +00:00
</footer>
</body>
</html>