Add function
[dcaegen2/services.git] / components / datalake-handler / admin / src / src / app / sidebar / sidebar.component.html
1 <!--
2 ============LICENSE_START=======================================================
3 ONAP : DataLake
4 ================================================================================
5 Copyright 2019 QCT
6 =================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11      http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
21 <nav class="navbar navbar-expand-md">
22   <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
23     aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
24     <span class="fas fa-align-justify"></span>
25   </button>
26   <div class="collapse navbar-collapse nav" id="navbarSupportedContent">
27     <ul class="navbar-nav flex-column" routerLinkActive="active">
28
29       <li class="nav-item">
30         <a class="nav-link" [routerLinkActive]="['active']" [routerLinkActiveOptions]="{exact:true}"
31           routerLink="/feeder">
32           <i class="fas fa-tachometer-alt"></i>
33           {{"SIDEBAR.FEDDFER" | translate}}
34         </a>
35       </li>
36
37       <li class="nav-item">
38         <a class="nav-link" [routerLinkActive]="['active']" [routerLinkActiveOptions]="{exact:true}"
39           routerLink="/topics">
40           <i class="fas fa-cube"></i>
41           {{"SIDEBAR.TOPICS" | translate}}
42         </a>
43       </li>
44
45       <li class="nav-item">
46         <a class="nav-link" [routerLinkActive]="['active']" [routerLinkActiveOptions]="{exact:true}"
47           routerLink="/database">
48           <i class="fas fa-database" aria-hidden="true"></i>
49           {{"SIDEBAR.DATABASE" | translate}}
50         </a>
51       </li>
52
53       <li class="nav-item">
54         <a class="nav-link" [routerLinkActive]="['active']" [routerLinkActiveOptions]="{exact:true}"
55           routerLink="/about">
56           <i class="fas fa-info-circle" aria-hidden="true"></i>
57           {{"SIDEBAR.ABOUT" | translate}}
58         </a>
59       </li>
60     </ul>
61   </div>
62 </nav>