As I understand it the "conventional" way to handle page reloads is to duplicate functionality and presentation on the web stack using its controllers, views, and models. I'd appreciate insight on other (possibly better) ways to handle these situations. As well as feedback on the following two approaches:
Reload the js framework based app/suite on every web (stack) app page thus forcing the js framework to handle all routing and rendering
Use the web stack to route interactions and then use backbone to display views depending on the interactions.
Thanks!