blob: 7c7e58c0dc20def9ff68a0e01ba0ee1a213b8061 [file] [log] [blame]
Radek Krejcid23f0df2017-08-31 16:34:49 +02001<div id="netopeer-header">
2 <h1><span routerLink="/netopeer">Netopeer</span> {{componentTitle}}</h1>
3
4 <nav>
5 <a *ngFor="let component of netopeerComponents"
6 routerLink="{{component.route}}" routerLinkActive="active">{{component.name}}</a>
7 </nav>
8
9</div>
10<div id="netopeer-component">
11 <netopeer-dashboard *ngIf="componentTitle == ''"></netopeer-dashboard>
12 <router-outlet (activate)="onActivate($event)" (deactivate)="onDeactivate($event)"></router-outlet>
13</div>