28 lines
835 B
HTML
28 lines
835 B
HTML
![]() |
<!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>
|