diff --git a/docs/reference/frontmatter-config.md b/docs/reference/frontmatter-config.md index 1f6ce7f1..4bbf65d5 100644 --- a/docs/reference/frontmatter-config.md +++ b/docs/reference/frontmatter-config.md @@ -111,6 +111,32 @@ Defines contents of home hero section when `layout` is set to `home`. More detai Defines items to display in features section when `layout` is set to `home`. More details in [Default Theme: Home Page](./default-theme-home-page). +### navbar + +- Type: `boolean` +- Default: `true` + +Whether to display [navbar](./default-theme-nav). + +```yaml +--- +navbar: false +--- +``` + +### sidebar + +- Type: `boolean` +- Default: `true` + +Whether to display [sidebar](./default-theme-sidebar). + +```yaml +--- +sidebar: false +--- +``` + ### aside - Type: `boolean | 'left'` @@ -140,7 +166,7 @@ The levels of header in the outline to display for the page. It's same as [confi - Type: `boolean` - Default: `true` -Whether to display [Last Updated](./default-theme-last-updated) text in the footer of the current page. +Whether to display [last updated](./default-theme-last-updated) text in the footer of the current page. ```yaml --- @@ -153,7 +179,7 @@ lastUpdated: false - Type: `boolean` - Default: `true` -Whether to display [Edit Link](./default-theme-edit-link) in the footer of the current page. +Whether to display [edit link](./default-theme-edit-link) in the footer of the current page. ```yaml --- @@ -166,10 +192,10 @@ editLink: false - Type: `boolean` - Default: `true` -Whether to display [Footer](./default-theme-footer) in the footer of the current page. +Whether to display [footer](./default-theme-footer). ```yaml --- footer: false --- -``` \ No newline at end of file +```