Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en" ng-app="app"> |
| 3 | <head> |
| 4 | <base href="/"> |
| 5 | <meta charset="UTF-8"> |
| 6 | <title>openBMC</title> |
| 7 | <link rel="icon" href="favicon.ico?v=2"/> |
| 8 | <!-- build:css styles/app.min.css --> |
| 9 | <link rel="stylesheet" href="styles/index.css"> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 10 | <<<<<<< HEAD |
Michael Davis | 3a0d471 | 2017-03-27 14:01:34 -0500 | [diff] [blame] | 11 | |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 12 | <!-- endbuild --> |
| 13 | </head> |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame] | 14 | <body ng-style="dataService.bodyStyle" ng-attr-id="{{!dataService.showNavigation ? 'login': ''}}"> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 15 | |
| 16 | <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header> |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame] | 17 | <app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataService.showNavigation"></app-navigation> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 18 | |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame] | 19 | <main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}"> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 20 | ======= |
| 21 | <!-- endbuild --> |
| 22 | </head> |
| 23 | <body ng-style="dataService.bodyStyle" ng-attr-id="{{dataService.path == '/login' ? 'login': ''}}"> |
| 24 | |
| 25 | <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header> |
| 26 | <app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation=" dataService.showNavigation"></app-navigation> |
| 27 | |
| 28 | <main ng-view ng-class="{'content__container': dataService.path != '/login', 'login__wrapper': dataService.path == '/login'}"> |
| 29 | >>>>>>> 4c1a3dd... Major update to code structure |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 30 | </main> |
| 31 | |
| 32 | <!-- build:js scripts/vendor.min.js --> |
| 33 | <script src="../bower_components/angular/angular.min.js"></script> |
| 34 | <script src="../bower_components/angular-route/angular-route.min.js"></script> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 35 | <<<<<<< HEAD |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 36 | <script src="../bower_components/angular-clipboard/angular-clipboard.min.js"></script> |
| 37 | <script src="../bower_components/angularUtils-pagination/dirPagination.min.js"></script> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 38 | <<<<<<< HEAD |
Michael Davis | 8b52206 | 2017-05-05 09:21:07 -0500 | [diff] [blame] | 39 | <script src="../bower_components/hterm/js/hterm.js"></script> |
| 40 | |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 41 | ======= |
| 42 | >>>>>>> 4c1a3dd... Major update to code structure |
| 43 | ======= |
| 44 | <script src="vendors/hterm/hterm_all.min.js"></script> |
| 45 | |
| 46 | >>>>>>> a96f9cc... created remote console page |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 47 | <!-- endbuild --> |
| 48 | |
| 49 | <!-- build:js scripts/app.min.js --> |
| 50 | <script src="index.js"></script> |
| 51 | <script src="templates.js"></script> |
| 52 | <script src="vendors.js"></script> |
| 53 | |
| 54 | <script src="constants/index.js"></script> |
| 55 | <script src="constants/environment-constants.js"></script> |
| 56 | |
| 57 | <script src="common/services/index.js"></script> |
| 58 | <script src="common/services/constants.js"></script> |
| 59 | <script src="common/services/dataService.js"></script> |
| 60 | <script src="common/services/api-utils.js"></script> |
| 61 | <script src="common/services/userModel.js"></script> |
| 62 | <script src="common/services/apiInterceptor.js"></script> |
| 63 | |
| 64 | <script src="common/filters/index.js"></script> |
| 65 | |
| 66 | <script src="common/directives/index.js"></script> |
| 67 | <script src="common/directives/app-header.js"></script> |
| 68 | <script src="common/directives/app-navigation.js"></script> |
| 69 | <script src="common/directives/confirm.js"></script> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 70 | <<<<<<< HEAD |
Iftekharul Islam | 8b4828a | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 71 | <script src="common/directives/log-event.js"></script> |
| 72 | <script src="common/directives/log-filter.js"></script> |
| 73 | <script src="common/directives/log-search-control.js"></script> |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 74 | <script src="common/directives/toggle-flag.js"></script> |
Iftekharul Islam | c016139 | 2017-06-14 15:46:15 -0500 | [diff] [blame] | 75 | <script src="common/directives/firmware-list.js"></script> |
| 76 | <script src="common/directives/file.js"></script> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 77 | |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 78 | <script src="login/index.js"></script> |
| 79 | <script src="login/controllers/login-controller.js"></script> |
| 80 | <script src="overview/index.js"></script> |
| 81 | <script src="overview/controllers/system-overview-controller.js"></script> |
| 82 | <script src="server-control/index.js"></script> |
| 83 | <script src="server-control/controllers/bmc-reboot-controller.js"></script> |
| 84 | <script src="server-control/controllers/power-operations-controller.js"></script> |
| 85 | <script src="server-control/controllers/remote-console-controller.js"></script> |
| 86 | <script src="server-health/index.js"></script> |
| 87 | <script src="server-health/controllers/diagnostics-controller.js"></script> |
| 88 | <script src="server-health/controllers/inventory-controller.js"></script> |
| 89 | <script src="server-health/controllers/inventory-overview-controller.js"></script> |
| 90 | <script src="server-health/controllers/log-controller.js"></script> |
| 91 | <script src="server-health/controllers/power-consumption-controller.js"></script> |
| 92 | <script src="server-health/controllers/sensors-controller.js"></script> |
| 93 | <script src="server-health/controllers/sensors-overview-controller.js"></script> |
| 94 | <script src="server-health/controllers/unit-id-controller.js"></script> |
| 95 | <script src="configuration/index.js"></script> |
| 96 | <script src="configuration/controllers/date-time-controller.js"></script> |
| 97 | <script src="configuration/controllers/file-controller.js"></script> |
| 98 | <script src="configuration/controllers/network-controller.js"></script> |
| 99 | <script src="configuration/controllers/security-controller.js"></script> |
Michael Davis | 43366db | 2017-05-15 18:12:35 -0500 | [diff] [blame] | 100 | <script src="configuration/controllers/firmware-controller.js"></script> |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 101 | <script src="users/index.js"></script> |
| 102 | <script src="users/controllers/user-accounts-controller.js"></script> |
Michael Davis | dfad5d5 | 2017-07-20 14:53:46 -0500 | [diff] [blame] | 103 | ======= |
| 104 | |
| 105 | <script src="login/index.js"></script> |
| 106 | <script src="login/controllers/login-controller.js"></script> |
| 107 | <script src="overview/index.js"></script> |
| 108 | <script src="overview/controllers/bmc-reboot-controller.js"></script> |
| 109 | <script src="overview/controllers/power-operations-controller.js"></script> |
| 110 | <script src="overview/controllers/system-overview-controller.js"></script> |
| 111 | <script src="overview/controllers/unit-id-controller.js"></script> |
| 112 | <script src="overview/controllers/log-controller.js"></script> |
| 113 | >>>>>>> 4c1a3dd... Major update to code structure |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 114 | <!-- endbuild --> |
| 115 | </body> |
| 116 | |
| 117 | </html> |