angular hide element from component when on certain page
// in .component.ts fileimport{ Router }from'@angular/router';exportclassExampleComponent{constructor(private _router: Router){}}// in html file<footer *ngIf="_router.url != '/your-route'"></footer>