diff --git a/content/explore.md b/content/explore.md index 27bfad0..fa6b651 100644 --- a/content/explore.md +++ b/content/explore.md @@ -20,6 +20,7 @@ The main event — essays, reflections, and the daily Morning Brief. Side projects built into the site. +- [/earth](/earth) — Earth View — interactive 3D globe with live NASA satellite imagery, overlays, and time lapses - [/status](/status) — KC Situation Awareness Dashboard — live weather alerts, Windy radar, Blink cameras, and I-70 traffic cameras - [/airbrief](/airbrief) — AirBrief — aviation weather situational awareness (METARs, TAFs, flight categories) - [/volleyball-score](/volleyball-score) — volleyball scorekeeping app diff --git a/hugo.toml b/hugo.toml index 81e4264..f267085 100644 --- a/hugo.toml +++ b/hugo.toml @@ -77,6 +77,12 @@ contentDir = "content" parent = "explore" weight = 8 +[[menus.main]] + name = "Earth View" + url = "/earth" + parent = "explore" + weight = 9 + [[menus.footer]] name = "RSS" url = "/index.xml" diff --git a/layouts/index.html b/layouts/index.html index 8e74b2f..4c8cabd 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,4 +1,26 @@ {{ define "main" }} + +
+

Tools

+
+ + 🌍 + Earth View + Live NASA satellite imagery on an interactive 3D globe + + + ✈️ + AirBrief + Aviation weather lookup — METARs, TAFs, and PIREPs + + + 📡 + Status Dashboard + Kansas City situation awareness — weather, traffic, cameras + +
+
+ {{- $pages := where .Site.RegularPages "Section" "posts" }} {{- $paginator := .Paginate $pages }}