First public release

This commit is contained in:
Steven 2025-03-06 00:59:38 -05:00
parent 16691e8211
commit 2f7d67aa5a
4 changed files with 145 additions and 0 deletions

27
templates/index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TARC Routes</title>
<meta charset="UTF-8">
<meta content="Realtime TARC bus maps" property="og:title">
<meta content='https://tarc.stevenalexander.org/bus.svg' property='og:image'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="/bus.svg">
<style>
body {
font-family: monospace;
font-size: 1cm;
padding: 0;
margin: 0;
}
</style>
</head>
<body>
Find <a href="https://www.ridetarc.org/about-us/news/">news</a> and <a href="https://www.ridetarc.org/alerts/">alerts</a> at ridetarc.org<br>
Some busses don't provide location data.<br>
This service is provided without warranty.<br>
{%- for route in routes %}
<a href="{{route}}">{{'%02d'%route}} {{routes[route]["name"]}}</a><br>
{%- endfor %}
</body>
</html>