Mobile data bindings on content pages

What is the proper method to enable the data bindings from a head page on mobile, to be selectable from a content page?

For example, having a mobile app page index.html, and a content page orders.html. I have server connects contained within the index.html page, but in use in the orders.html page because, well, that’s how I was able to make it work.

In testing though it seems like the ability select bindings on orders.html, is driven by an include statement on the head page index.html…correct?

<?php include 'orders.html'; ?>

This statement however is not needed on mobile as I can simply call the route /orders/ and it loads within the original view with the toolbar from index, etc.

So I guess I’m asking either for a feature request to expand data bindings to work in this scenario, or some guidance on where server connect actions belong, how their bindings can be visible throughout, etc. Keep in mind that I can manually code these bindings and everything works perfectly, it’s just tough to remember all the binding names!