From 7ca4d92c8d3741e2b14881d27ed741b17d6d0a69 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 02:59:19 +0000 Subject: [PATCH 1/4] Update pages.mdx --- pages.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pages.mdx b/pages.mdx index 45cc373c5..8f8e1da66 100644 --- a/pages.mdx +++ b/pages.mdx @@ -93,6 +93,17 @@ mode: "center" --- ``` +### Frame + +Frame mode provides a custom layout similar to custom mode but preserves the sidebar display. This mode allows for custom HTML and components while maintaining navigation accessibility. Frame mode is only available for specific themes, including "aspen". + +```yaml +--- +title: "Frame page title" +mode: "frame" +--- +``` + ## API pages Create interactive API playgrounds by adding an API specification to your frontmatter, `api` or `openapi`. From 5d4881dcd82ff7b4832289bd054bcf15380d5590 Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 15 Sep 2025 11:07:31 -0700 Subject: [PATCH 2/4] copyedit --- pages.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.mdx b/pages.mdx index 8f8e1da66..0bbdcb467 100644 --- a/pages.mdx +++ b/pages.mdx @@ -95,7 +95,7 @@ mode: "center" ### Frame -Frame mode provides a custom layout similar to custom mode but preserves the sidebar display. This mode allows for custom HTML and components while maintaining navigation accessibility. Frame mode is only available for specific themes, including "aspen". +Frame mode optimizes pages for embedding into iframes on other websites. This page mode allows for custom HTML and components, but preserves the sidebar navigation. Frame mode is only available for Aspen and Almond themes. ```yaml --- From 4fe3efdd9d45009ac41b061edce71aa2cd71f333 Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 15 Sep 2025 11:58:08 -0700 Subject: [PATCH 3/4] correct functionality --- pages.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.mdx b/pages.mdx index 0bbdcb467..8dc3b0597 100644 --- a/pages.mdx +++ b/pages.mdx @@ -95,7 +95,7 @@ mode: "center" ### Frame -Frame mode optimizes pages for embedding into iframes on other websites. This page mode allows for custom HTML and components, but preserves the sidebar navigation. Frame mode is only available for Aspen and Almond themes. +Frame mode provides a layout similar to custom mode, but preserves the sidebar navigation. This page mode allows for custom HTML and components while maintaining the default navigation experience. Frame mode is only available for Aspen and Almond themes. ```yaml --- From c75bb66c44688b573973334b1b6fba2dc07ed806 Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 15 Sep 2025 11:58:35 -0700 Subject: [PATCH 4/4] move frame beneath custom --- pages.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages.mdx b/pages.mdx index 8dc3b0597..94b2a0069 100644 --- a/pages.mdx +++ b/pages.mdx @@ -82,25 +82,25 @@ mode: "custom" --- ``` -### Center +### Frame -Center mode removes the sidebar and table of contents, centering the content. This is useful for changelogs or other pages where you want to emphasize the content. +Frame mode provides a layout similar to custom mode, but preserves the sidebar navigation. This page mode allows for custom HTML and components while maintaining the default navigation experience. Frame mode is only available for Aspen and Almond themes. ```yaml --- -title: "Center page title" -mode: "center" +title: "Frame page title" +mode: "frame" --- ``` -### Frame +### Center -Frame mode provides a layout similar to custom mode, but preserves the sidebar navigation. This page mode allows for custom HTML and components while maintaining the default navigation experience. Frame mode is only available for Aspen and Almond themes. +Center mode removes the sidebar and table of contents, centering the content. This is useful for changelogs or other pages where you want to emphasize the content. ```yaml --- -title: "Frame page title" -mode: "frame" +title: "Center page title" +mode: "center" --- ```