Reputation: 21
I am using ionic develop mobile application.
How to Embed multiple html pages to one html page using ionic?
<ion-side-menus>
<ion-side-menu-content>
<ion-nav-view name="EmbeddedContent"></ion-nav-view>
</ion-side-menu-content>
</ion-side-menus>
Upvotes: 1
Views: 186
Reputation: 149
I think that you can use div with ng-include=""
Example:
<div ng-include="'myTemplate.html'"></div>
Upvotes: 1