Initial commit of RIC Dashboard webapp
[portal/ric-dashboard.git] / webapp-frontend / src / app / navigation / sidenav-list / sidenav-list.component.html
diff --git a/webapp-frontend/src/app/navigation/sidenav-list/sidenav-list.component.html b/webapp-frontend/src/app/navigation/sidenav-list/sidenav-list.component.html
new file mode 100644 (file)
index 0000000..85088e2
--- /dev/null
@@ -0,0 +1,36 @@
+<!--
+  ========================LICENSE_START=================================
+  ORAN-OSC
+  %%
+  Copyright (C) 2019 AT&T Intellectual Property and Nokia
+  %%
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+       http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  ========================LICENSE_END===================================
+  -->
+<mat-nav-list>
+  <a mat-list-item routerLink="/login" (click)="onSidenavClose()">
+      <mat-icon>home</mat-icon> <span class="nav-caption">Home</span>
+  </a>
+  <a mat-list-item routerLink="/catalog" (click)="onSidenavClose()">
+      <mat-icon>list</mat-icon> <span class="nav-caption">Catalog</span>   
+  </a>
+  <a mat-list-item routerLink="/control" (click)="onSidenavClose()">
+      <mat-icon>settings</mat-icon><span class="nav-caption">Control</span>
+  </a>
+  <a mat-list-item routerLink="/stats" (click)="onSidenavClose()">
+      <mat-icon>assessment</mat-icon> <span class="nav-caption">Stats</span>
+  </a>
+  <a mat-list-item routerLink="/admin" (click)="onSidenavClose()">
+      <mat-icon>assignment_ind</mat-icon> <span class="nav-caption">Admin</span>   
+  </a>
+</mat-nav-list>