From 421b0f4dc1ca3e836470dfef54ec91ff11523234 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Mon, 29 Jul 2024 17:42:17 -0700 Subject: [PATCH] FIx menu nav only doc to use config --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 88836269..9a7d98ab 100644 --- a/README.md +++ b/README.md @@ -1242,20 +1242,18 @@ To hide the breadcrumbs on every page, try the following in `yoursite/hugo.toml`: ```toml -[params.paige] -style = """ -#paige-breadcrumbs { display: none; } -""" +[params.paige.site] +disable_breadcrumbs = true ``` To hide the collection, section, and page lists on the home page, try the following in `yoursite/content/_index.md`: ```toml -[paige] -style = """ -#paige-collections, #paige-sections, #paige-pages { display: none; } -""" +[params.paige.list_page] +disable_collections = true +disable_pages = true +disable_sections = true ``` ## Credits