From aa08908493ef6e7a4da1222c9d73e78a74c01b6e Mon Sep 17 00:00:00 2001 From: Will Estes Date: Mon, 13 Jul 2026 12:48:10 -0400 Subject: [PATCH] Fix accessibility bug: fully comment out disabled main menu entry [[menu.main]] was left active while its name/url/weight fields were commented out, so Hugo built one real menu entry with no name or URL. The header template rendered it as an empty , which screen readers announce using the resolved href (the current page's own URL) since there's no text or aria-label -- e.g. reading "freebie" on the freebie page. --- hugo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo.toml b/hugo.toml index ce45535..2b22722 100644 --- a/hugo.toml +++ b/hugo.toml @@ -14,7 +14,7 @@ disableKinds = ["taxonomy", "term"] author = "Will Estes" eec_base_url = "https://eec.reground.org" -[[menu.main]] +# [[menu.main]] # name = "Courses" # url = "/courses/" # weight = 10