Refactor nav: remove numbers from Tools/Settings, add separator and Tasks item

- Remove "6." / "7." prefixes from Tools and Settings nav labels and page titles
- Add a horizontal separator (nav-sep) before the Tools/Settings group
- Move Tasks into the nav as a regular nav-item after the separator,
  replacing the separate tasks-nav-btn at the sidebar bottom
- Tasks item retains the active-count badge (tasks-nav-count)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mikhail Chusavitin
2026-06-18 17:54:54 +03:00
parent e7442972d1
commit 5b5d8609d3
2 changed files with 30 additions and 21 deletions
+2 -2
View File
@@ -44,11 +44,11 @@ func renderPage(page string, opts HandlerOptions) string {
body = renderEndurance(opts)
case "tools":
pageID = "tools"
title = "6. Tools"
title = "Tools"
body = renderTools()
case "settings":
pageID = "settings"
title = "7. Settings"
title = "Settings"
body = renderSettings(opts)
// Legacy routes (redirected at HTTP level in handlePage; these are fallbacks)
case "validate", "tests":