From d8eb473bc42e250eb03ddbb0ba76646973ae50d9 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 01:13:37 +0200 Subject: [PATCH 1/3] Set Home root nav and remove top tabs Define Home as the top-level root page in zensical nav and remove navigation.tabs to avoid top tab navigation on home. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/zensical.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/zensical.toml b/.github/zensical.toml index 0d69657..b499c9b 100644 --- a/.github/zensical.toml +++ b/.github/zensical.toml @@ -25,7 +25,6 @@ features = [ "navigation.instant", "navigation.instant.progress", "navigation.indexes", - "navigation.tabs", "navigation.top", "navigation.tracking", "search.share", From 26357078c03efeeb3929cd97bbf70d6135f5690e Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 01:25:07 +0200 Subject: [PATCH 2/3] Restore side nav and set Home title Remove explicit nav override so full left navigation is auto-generated without top tabs, and rename the first README page title to Home for the left menu label. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/zensical.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/zensical.toml b/.github/zensical.toml index b499c9b..9bbfbc6 100644 --- a/.github/zensical.toml +++ b/.github/zensical.toml @@ -2,9 +2,6 @@ site_name = "-{{ REPO_NAME }}-" repo_name = "-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" repo_url = "https://github.com/-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" -nav = [ - {"Home" = "index.md"}, -] [project.theme] language = "en" From a6263274114fe93197bf5f9ff1e624d0ecd91e6a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 01:31:47 +0200 Subject: [PATCH 3/3] Hide top docs tabs Add repo-level extra_css override to hide md-tabs so top tab navigation is removed while keeping the left menu behavior unchanged. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/zensical.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/zensical.toml b/.github/zensical.toml index 9bbfbc6..717067d 100644 --- a/.github/zensical.toml +++ b/.github/zensical.toml @@ -2,6 +2,7 @@ site_name = "-{{ REPO_NAME }}-" repo_name = "-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" repo_url = "https://github.com/-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" +extra_css = ["data:text/css,.md-tabs%7Bdisplay%3Anone%20!important%3B%7D"] [project.theme] language = "en"