Skip to content

Commit c06ac6d

Browse files
authored
Nested Pages (#316)
* Nested Pages * Added images
1 parent e5f1da0 commit c06ac6d

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
title: Nested Pages
3+
hide_title: true
4+
description: Create structured documentation with Nested Pages. Build parent-child hierarchies, organize content logically, and improve navigation for your team's knowledge base.
5+
---
6+
7+
import Tags from '@site/src/components/Tags';
8+
9+
<div className="tag-wrapper">
10+
# Structure content with Nested Pages
11+
<Tags
12+
tags={[
13+
{ name: "Business", link:"https://plane.so/pricing", additionalClass: "business" }
14+
]}
15+
/>
16+
</div>
17+
18+
Nested Pages allows you to create a hierarchical structure for your workspace content, helping you organize documentation logically and improve navigation for your team. This feature enables you to build robust knowledge architecture with parent and child pages, similar to folders and files but with more flexibility.
19+
20+
## Create nested pages
21+
There are multiple ways to create a nested page:
22+
23+
### Using the `/page` command
24+
25+
While editing any page, type `/page` to insert a new page reference. Name your new page and it will automatically be created as a child of the current page.
26+
![Page command](https://media.docs.plane.so/pages/page-command.webp#center)
27+
28+
### On the Wiki sidebar
29+
30+
Click the **+** icon that appears next to any page name. This creates a new page nested under the selected parent.
31+
![Nested page on the wiki sidebar](https://media.docs.plane.so/pages/create-nested-page-sidebar.webp#center)
32+
33+
## Move existing pages
34+
To nest an existing page under another page, drag and drop the page in the sidebar to position it under the desired parent.
35+
![Move nested pages](https://media.docs.plane.so/pages/move-nested-pages.webp#center)
36+
37+
## Navigate nested pages
38+
39+
- The sidebar displays your page hierarchy with visual indentation showing the nesting structure.
40+
- Expand or collapse parent pages using the ▶ arrow to show or hide nested pages.
41+
- Breadcrumbs appear at the top of each page showing the full path.
42+
- Click any page in the breadcrumb trail to navigate to that level. This provides context about where you are in the documentation hierarchy.
43+
44+
## Move pages between levels
45+
46+
To promote a nested page to a higher level, drag it to the desired position in the hierarchy. To demote a page to become nested under another, drag it under the new parent.
47+
48+
## Visibility and access control
49+
50+
#### Public vs. Private Pages
51+
52+
- Public pages are visible to anyone with access to your workspace.
53+
- Private pages are only visible to only you and the Workspace Admins.
54+
- You can nest private pages under public pages for controlled access to sensitive information.
55+
- A private nested page is not visible to users who only have access to the public parent.
56+
57+
#### Visibility Inheritance
58+
59+
- Nested pages do not automatically inherit the visibility settings of their parent.
60+
- Each page can have its own visibility settings, allowing for flexible access control.
61+
- Users without access to a parent page will not see any nested pages, regardless of the nested pages' individual visibility settings.
62+
63+
## Archiving and Deletion
64+
65+
- When you archive a parent page, all nested pages under it will also be archived. This helps maintain the integrity of related content.
66+
- Archived pages can be restored from the **Archived** section in the sidebar.
67+
- Deleting a parent page prompts a warning about nested content. You can choose to:
68+
- Delete only the parent page and move nested pages up one level
69+
- Delete the parent and all nested content permanently

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ const sidebars: SidebarsConfig = {
148148
],
149149
},
150150
'core-concepts/pages/wiki',
151+
'core-concepts/pages/nested-pages'
151152
],
152153
},
153154
{

0 commit comments

Comments
 (0)