Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/i18n/en/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default [
},
{ text: 'Authoring Content', slug: 'guides/content', key: 'guides/content' },
{
text: 'Content Collections (Experimental)',
text: 'Content Collections',
slug: 'guides/content-collections',
key: 'guides/content-collections',
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/en/core-concepts/astro-pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Astro supports the following file types in the `src/pages/` directory:

Astro leverages a routing strategy called **file-based routing**. Each file in your `src/pages/` directory becomes an endpoint on your site based on its file path.

A single file can also generate multiple pages using [dynamic routing](/en/core-concepts/routing/#dynamic-routes). This allows you to create pages even if your content lives outside of the special `/pages/` directory, such as in a [content collection](/en/guides/content-collections/#rendering-entry-content) or a [CMS](/en/guides/cms/).
A single file can also generate multiple pages using [dynamic routing](/en/core-concepts/routing/#dynamic-routes). This allows you to create pages even if your content lives outside of the special `/pages/` directory, such as in a [content collection](/en/guides/content-collections/) or a [CMS](/en/guides/cms/).

📚 Read more about [Routing in Astro](/en/core-concepts/routing/).

Expand Down
Loading