Iftekharul Islam | f157d37 | 2017-03-08 11:11:27 -0600 | [diff] [blame] | 1 | <nav> |
| 2 | <ul id="nav__top-level" ng-style="navStyle"> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 3 | <li> |
Iftekharul Islam | f157d37 | 2017-03-08 11:11:27 -0600 | [diff] [blame] | 4 | <button class="btn-overview" ng-class="{opened: firstLevel == 'overview'}" ng-click="firstLevel = 'overview';" tabindex="1"> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 5 | |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 6 | |
| 7 | <span class="">Server Overview</span></button> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 8 | </li> |
| 9 | <li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 10 | <button class="btn-health" ng-class="{opened: firstLevel == 'health'}" ng-click="firstLevel = 'health';" tabindex="9"> |
| 11 | |
| 12 | <span>Server Health</span></button> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 13 | </li> |
| 14 | <li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 15 | <button class="btn-control" ng-class="{opened: firstLevel == 'control'}" ng-click="firstLevel = 'control';"> |
| 16 | |
| 17 | <span>Server Control</span></button> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 18 | </li> |
| 19 | <li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 20 | <button class="btn-config" ng-class="{opened: firstLevel == 'config'}" ng-click="firstLevel = 'config';"> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 21 | <svg class="nav__icon" viewBox="0 0 20 20"> |
| 22 | <path class="nav__icon-help__outer" d="M10,0.9c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S14.9,0.9,10,0.9"/> |
| 23 | <path class="nav__icon-help__inner" d="M9.2,5.4V3.7h1.5v1.8H9.2z M9.2,16.1v-9h1.5v9H9.2z"/> |
| 24 | </svg> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 25 | <span>Configuration</span></button> |
| 26 | </li> |
| 27 | <li> |
| 28 | <button class="btn-firmware" ng-class="{opened: firstLevel == 'firmware'}" ng-click="firstLevel = 'firmware';"> |
| 29 | <svg class="nav__icon" viewBox="0 0 20 20"> |
| 30 | <path class="nav__icon-help__outer" d="M10,0.9c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S14.9,0.9,10,0.9"/> |
| 31 | <path class="nav__icon-help__inner" d="M9.2,5.4V3.7h1.5v1.8H9.2z M9.2,16.1v-9h1.5v9H9.2z"/> |
| 32 | </svg> |
| 33 | <span>Firmware</span></button> |
| 34 | </li> |
| 35 | <li> |
| 36 | <button class="btn-users" ng-class="{opened: firstLevel == 'users'}" ng-click="firstLevel = 'users';"> |
| 37 | <svg class="nav__icon" viewBox="0 0 20 20"> |
| 38 | <path class="nav__icon-help__outer" d="M10,0.9c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S14.9,0.9,10,0.9"/> |
| 39 | <path class="nav__icon-help__inner" d="M9.2,5.4V3.7h1.5v1.8H9.2z M9.2,16.1v-9h1.5v9H9.2z"/> |
| 40 | </svg> |
| 41 | <span>Users</span></button> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 42 | </li> |
| 43 | </ul> |
Iftekharul Islam | f157d37 | 2017-03-08 11:11:27 -0600 | [diff] [blame] | 44 | <ul class="nav__second-level btn-overview" ng-style="navStyle" ng-class="{opened: firstLevel == 'overview'}"> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 45 | <li ng-class="{'active': (path == '/overview/system')}" tabindex="2"><a href="#/system-overview">System Overview</a></li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 46 | |
| 47 | |
| 48 | |
| 49 | |
| 50 | |
| 51 | </ul> |
| 52 | <ul class="nav__second-level btn-health" ng-style="navStyle" ng-class="{opened: firstLevel == 'health'}"> |
| 53 | <li ng-class="{'active': (path == '/overview/log')}"><a href="#/overview/log" tabindex="7">Event Log</a></li> |
| 54 | <li><a href="">FRU Information</a></li> |
| 55 | <li><a href="">Sensor Data</a></li> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 56 | <li ng-class="{'active': (path == '/overview/power-consumption')}"><a href="" tabindex="4">Power consumption</a></li> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 57 | <li ng-class="{'active': (path == '/overview/unit-id')}"><a href="#/overview/unit-id" tabindex="6">Unit ID</a></li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 58 | <li><a href="">Diagnostics</a></li> |
| 59 | </ul> |
| 60 | <ul class="nav__second-level btn-control" ng-style="navStyle" ng-class="{opened: firstLevel == 'control'}"> |
| 61 | <li ng-class="{'active': (path == '/overview/power-operations')}" tabindex="3"><a href="#/overview/power-operations">Server power operations</a></li> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 62 | <li ng-class="{'active': (path == '/overview/bmc-reboot')}"><a href="#/overview/bmc-reboot" tabindex="8">Reboot BMC</a></li> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 63 | <li ng-class="{'active': (path == '/overview/remote-console')}"><a href="" tabindex="5">Remote console</a></li> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 64 | </ul> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 65 | <ul class="nav__second-level btn-firmware" ng-style="navStyle" ng-class="{opened: firstLevel == 'config'}"> |
| 66 | <li><a href="">Network Configuration</a></li> |
| 67 | <li><a href="">Date & Time</a></li> |
| 68 | <li><a href="">Security</a></li> |
| 69 | <li><a href="">Configuration File</a></li> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 70 | </ul> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 71 | <ul class="nav__second-level btn-firmware" ng-style="navStyle" ng-class="{opened: firstLevel == 'firmware'}"> |
| 72 | <li><a href="">BMC Firmawre</a></li> |
| 73 | <li><a href="">Server Firmware</a></li> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 74 | </ul> |
Michael Davis | 890a206 | 2017-03-27 13:14:02 -0500 | [diff] [blame^] | 75 | <ul class="nav__second-level btn-users" ng-style="navStyle" ng-class="{opened: firstLevel == 'users'}"> |
| 76 | <li><a href="">Manage User Account</a></li> |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 77 | </ul> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 78 | </nav> |