I have the following site structure:
- A home page that contains some data (this part is easy I think)
- Many
play
pages that display different data. The format of all theplay
pages are the exact same, only the data is changing. The number ofplay
pages is every-growing and could exceed 1k pages.
I am evaluating between the following options:
Option 1 - Store play
pages as individual pages with data inline
With this approach, I would just store the data inline on the page itself, maybe passing it as input to a partial to help render the common elements on the page.
Option 2 - Store data in the data
directory
I’m not sure if this buys me anything. Maybe this approach would be cleaner from a layout perspective? I would still be reading the data from somewhere and passing it to a partial.
Option 3 - Something different?
There might be a better, idiomatic solution that I’m missing here since I’m relatively new to Hugo. Thank you in advance.