Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright 2014-present Open Networking Foundation |
| 3 | ~ |
| 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
| 7 | ~ |
| 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
| 15 | --> |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 16 | <nav id="nav" [@navState]="ns.showNav"> |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 17 | <div id="platform" class="nav-hdr">{{ lionFn('cat_platform') }}</div> |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 18 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 19 | <a id="app" (click)="ns.hideNav()" routerLink="/app" routerLinkActive="active"> |
| 20 | <onos-icon iconId="nav_apps"></onos-icon> Applications</a> |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 21 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 22 | <a id="settings" (click)="ns.hideNav()" routerLink="/settings" routerLinkActive="active"> |
| 23 | <onos-icon iconId="nav_settings"></onos-icon> Settings</a> |
| 24 | |
Priyanka H M | fa5b77a | 2018-07-27 12:43:44 +0530 | [diff] [blame] | 25 | <a id="cluster" (click)="ns.hideNav()" routerLink="/cluster" routerLinkActive="active"> |
| 26 | <onos-icon iconId="nav_cluster"></onos-icon> Cluster Nodes</a> |
| 27 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 28 | <a id="processor" (click)="ns.hideNav()" routerLink="/processor" routerLinkActive="active"> |
prai | 9d44596 | 2018-07-27 13:27:43 +0530 | [diff] [blame] | 29 | <onos-icon iconId="nav_processors"></onos-icon> Packet Processors</a> |
| 30 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 31 | <a id="partition" (click)="ns.hideNav()" routerLink="/partition" routerLinkActive="active"> |
| 32 | <onos-icon iconId="nav_partitions"></onos-icon> Partitions</a> |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 33 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 34 | <div id="network" class="nav-hdr">{{ lionFn('cat_network') }}</div> |
| 35 | |
| 36 | <a id="device" (click)="ns.hideNav()" routerLink="/device" routerLinkActive="active"> |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 37 | <onos-icon iconId="nav_devs"></onos-icon> Devices</a> |
| 38 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 39 | <a id="link" (click)="ns.hideNav()" routerLink="/link" routerLinkActive="active"> |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 40 | <onos-icon iconId="nav_links"></onos-icon> Links</a> |
| 41 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 42 | <a id="host" (click)="ns.hideNav()" routerLink="/host" routerLinkActive="active"> |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 43 | <onos-icon iconId="nav_hosts"></onos-icon> Hosts</a> |
| 44 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 45 | <a id="intent" (click)="ns.hideNav()" routerLink="/intent" routerLinkActive="active"> |
prai | 9d44596 | 2018-07-27 13:27:43 +0530 | [diff] [blame] | 46 | <onos-icon iconId="nav_intents"></onos-icon> Intents</a> |
| 47 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 48 | <a id="tunnel" (click)="ns.hideNav()" routerLink="/tunnel" routerLinkActive="active"> |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 49 | <onos-icon iconId="nav_tunnels"></onos-icon> Tunnels</a> |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 50 | |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 51 | <div id="other" class="nav-hdr">{{ lionFn('cat_other') }}</div> |
Priyanka H M | fa5b77a | 2018-07-27 12:43:44 +0530 | [diff] [blame] | 52 | </nav> |