Skip to content
Merged
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
6 changes: 3 additions & 3 deletions docs/docs/tutorial/part-6/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ When Gatsby builds the pages for your site, it creates routes based on the folde
* `src/pages/index.js` still lives at the `/` route.
* `src/pages/blog/index.js` lives at the `/blog` route.
* `src/pages/blog/{mdx.slug}.js` gets turned into multiple routes - one for each MDX node in the data layer.
* Gatsby uses the MDX node with slug `my-first-post` to build a page that lives at the `blog/my-first-post route`.
* Gatsby uses the MDX node with slug `another-post` to build a page that lives at the `blog/another-post route`.
* Gatsby uses the MDX node with slug `yet-another-post` to build a page that lives at the `blog/yet-another-post route`.
* Gatsby uses the MDX node with slug `my-first-post` to build a page that lives at the `blog/my-first-post` route.
* Gatsby uses the MDX node with slug `another-post` to build a page that lives at the `blog/another-post` route.
* Gatsby uses the MDX node with slug `yet-another-post` to build a page that lives at the `blog/yet-another-post` route.

</Collapsible>

Expand Down