Parent
It’s useful when defining a page hierarchy, where the child automatically inherits the parent’s slug. This creates a clean, SEO-friendly URL. For example, in an application with a news listing page at/news, clicking on a news item opens a detail page with a URL based on the parent page.
In this case, the URL combines the parent slug /news with the news title, such as “Littlebox Suite helped me build websites faster”, resulting in a final URL like /news/littlebox-suite-helped-me-build-websites-faster.
Step 1: Access the Strapi admin panel.Step 2: Go to the “Content-Type Builder”.
Step 3: Create a new single type called
news.Step 4: Add the slug custom field and title field.
Step 5: Create a new collection type called
news.Step 6: Add the custom slug field and title field.
Step 7: Go to the “Content Manager”.
Step 8: Create a new entry in the single type with the title “News”.

Step 10: In the left panel, under the Page Attributes section, set the parent to News.

Template
This is useful when used with our Next.js frontend.This feature injects the document content directly into the template, making integration easier. Step 1: Access the Strapi admin panel.
Step 2: Go to the “Littlebox Strapi Suite”.
Step 3: Select “Template”.
Step 4: Click “Create new entry”.
Step 5: Set a name and a UID. The UUID is used to locate the
.jsx or .tsx file where the data will be injected.

Step 7: Create a new collection or a single type. Check the requirements before creating a new document.
Step 8: Select the template created in
step 5 and save it.
