FIx menu nav only doc to use config

This commit is contained in:
Will Faught
2024-07-29 17:42:17 -07:00
parent c51041beff
commit 421b0f4dc1

View File

@@ -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