From b03fa42c2d81cf34aa518a420c894c4ae86fac50 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sat, 24 Jan 2026 20:37:54 -1000 Subject: Add Conditions page with live volcano and weather feeds - Standalone full-screen page at /conditions - Tiled grid layout with autoplaying video feeds - USGS Kilauea webcams (V1cam, V2cam) via YouTube embeds - Windy weather maps (local Hawaii + national US) - Opens in new tab from dashboard nav Closes #29 Co-Authored-By: Claude Opus 4.5 --- cmd/dashboard/main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd') diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index ce447ff..620b889 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -130,6 +130,7 @@ func main() { // Dashboard r.Get("/", h.HandleDashboard) + r.Get("/conditions", h.HandleConditionsPage) r.Post("/api/refresh", h.HandleRefresh) r.Get("/api/tasks", h.HandleGetTasks) r.Get("/api/meals", h.HandleGetMeals) @@ -142,6 +143,7 @@ func main() { r.Get("/tabs/meals", h.HandleTabMeals) r.Get("/tabs/timeline", h.HandleTimeline) r.Get("/tabs/shopping", h.HandleTabShopping) + r.Get("/tabs/conditions", h.HandleTabConditions) r.Post("/tabs/refresh", h.HandleRefreshTab) // Trello card operations -- cgit v1.2.3