diff options
| author | St33v <github@f3rr3t.com> | 2026-06-09 17:11:47 +1000 |
|---|---|---|
| committer | St33v <github@f3rr3t.com> | 2026-06-09 17:11:47 +1000 |
| commit | 258a3bec5192106e1e24e65763649b7f6943af9e (patch) | |
| tree | 9add3f9e8579e649c8acd7be5bdf8f329e2644ce /radar.index.html | |
| parent | 71a0aecb76984347292199db328142bef4807088 (diff) | |
Add Brisbane radar (IDR663) alongside Sydney
radar.service / radar-retry.service now invoke radarFetch.sh once
per product code, prefixed with `-` so one radar's outage does not
skip the other.
Landing page at / links to /sydney and /brisbane; each per-radar
page is the familiar black-page full-image idiom with a small
corner link to its sibling.
setup.sh provisions the subdirs and installs all three pages.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Diffstat (limited to 'radar.index.html')
| -rw-r--r-- | radar.index.html | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/radar.index.html b/radar.index.html index 63ecec6..8043d15 100644 --- a/radar.index.html +++ b/radar.index.html @@ -2,11 +2,18 @@ <html lang="en"> <head> <meta charset="utf-8"> -<title>Radar — Sydney</title> +<title>Radar</title> <style> - body { margin: 0; background: #000; display: flex; justify-content: center; align-items: center; height: 100vh; } - img { max-width: 100%; max-height: 100vh; } + html, body { margin: 0; height: 100%; background: #000; color: #ccc; + font-family: sans-serif; } + body { display: flex; justify-content: center; align-items: center; gap: 4em; } + a { color: #ccc; text-decoration: none; font-size: 2em; padding: 0.5em 1em; + border: 1px solid #444; border-radius: 0.3em; } + a:hover { background: #222; color: #fff; } </style> </head> -<body><img src="/idr713-loop.apng" alt="Sydney radar loop"></body> +<body> + <a href="/sydney/">Sydney</a> + <a href="/brisbane/">Brisbane</a> +</body> </html> |
