blob: 7cccb48cca503fe863c98f227739edecea9c7477 [file] [log] [blame]
<!--********************************************************************************
* Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************-->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="bs-mdm-navbar">
<ul class="nav navbar-nav">
<li *ngFor="let m of links" [routerLinkActive]="['active']"><a routerLink="{{m.path}}" style="cursor:pointer;"> {{m.name}}</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a [routerLink]="" (click)="showAboutDialog()">{{TtlAbout}}</a></li>
<li><a href="mdm/logout"><span class="glyphicon glyphicon-log-in"></span> {{TtlLogout}}</a></li>
</ul>
</div>
</div>
</nav>
<div>
<router-outlet></router-outlet>
</div>
<p-dialog header="About" [(visible)]="displayAboutDialog" modal="true" dismissableMask="true" responsive="true">
<notice></notice>
</p-dialog>
<mdm-notifications></mdm-notifications>