Jitendra Shewale
Jitendra Shewale

Reputation: 21

how to Embed multiple html pages to one html page using ionic

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

Answers (1)

J&#233;r&#244;me
J&#233;r&#244;me

Reputation: 149

I think that you can use div with ng-include=""

Example:

<div ng-include="'myTemplate.html'"></div>

Upvotes: 1

Related Questions