> you can export Webflow as code and rehost it wherever you like if that’s helpful.
this sounds good starting point for me, I am guessing in this case I need to render HTML on server side or add some additional code to exported source code to be able to render data front end on browser side.
Yeah, you would need to use something like Pug.js to render the data.
As an alternative (and possibly easier imo), you could add custom JS code on Webflow (it has an embed function) to hook onto its dynamic list functionality and add your own data inside.
In other words, create a list on Webflow with one item in it designed the way you want the final data to look. Then use JS code to override the data on that page with your own data source and to duplicate the list item as many times as you need for your data source
> you can export Webflow as code and rehost it wherever you like if that’s helpful.
this sounds good starting point for me, I am guessing in this case I need to render HTML on server side or add some additional code to exported source code to be able to render data front end on browser side.
Other options also seem interesting, thank you!