How to create dynamic page
Unanswered
Rhinelander posted this in #help-forum
RhinelanderOP
I'm wondering how to create a blog with a specific structure. I want a page at "/blog/posts" where all the blog posts are displayed. When you click on a particular post, you should be redirected to a new URL like "/blog/posts/[id]" or a slug – the specific format doesn't matter. My question is, when you fetch data like the title, author, and body of a post, how can you automatically add that fetched data to the URL path without manually creating each individual path? Is this something you typically handle in the parent layout during the data fetching process?