Hello, I've created an application with ionic where I have several pages. The application initializes with an intro page then goes to the home page. I wanted to know how to put a standard footer on all pages, except the intro, all at once without having to repeat the same code on every page. I tried doing this by putting the html code in the app.html file, in a way it works, however it also inserts the code in the Intro page and in that I do not want it to have a footer. Is there such a flexibility to work with layout in ionic? Thank you very much in advance. (Note: I'm using ionic3)
Follow the footer code that I want to repeat on all pages except the initial (Intro).
<ion-footer>
<ion-row>
<ion-col no-padding>
<button no-margin ion-button full large color="primary">
<ion-icon name="ios-chatbubbles"></ion-icon>
</button>
</ion-col>
<ion-col no-padding>
<button no-margin ion-button full large color="primary">
<ion-icon name="heart"></ion-icon>
</button>
</ion-col>
<ion-col no-padding>
<button no-margin ion-button full large color="primary">
<ion-icon name="person"></ion-icon>
</button>
</ion-col>
</ion-row>
</ion-footer>