diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-01-13 08:56:26 -1000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-01-13 08:56:26 -1000 |
| commit | 2292dff2d8d6f4b43dad8dffd3d559f7c1e5bb35 (patch) | |
| tree | 3d4749226897b410292ea1858327d76464fecc1a /web/templates/index.html | |
| parent | 043f48c12eb4dfc410e8724b430166000d7cb905 (diff) | |
Implement 4-Tab Architecture with unified Atom model
Diffstat (limited to 'web/templates/index.html')
| -rw-r--r-- | web/templates/index.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/web/templates/index.html b/web/templates/index.html index 2d35b37..b544ec3 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -31,7 +31,15 @@ hx-target="#tab-content" hx-push-url="false" onclick="setActiveTab(this)"> - 📋 Tasks & Planning + ✓ Tasks + </button> + <button + class="tab-button" + hx-get="/tabs/planning" + hx-target="#tab-content" + hx-push-url="false" + onclick="setActiveTab(this)"> + 📋 Planning </button> <button class="tab-button" @@ -41,6 +49,14 @@ onclick="setActiveTab(this)"> 📝 Notes </button> + <button + class="tab-button" + hx-get="/tabs/meals" + hx-target="#tab-content" + hx-push-url="false" + onclick="setActiveTab(this)"> + 🍽️ Meals + </button> </nav> </div> |
