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 | 3a0d471 | 2017-03-27 14:01:34 -0500 | [diff] [blame] | 10 | |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 11 | <!-- endbuild --> |
| 12 | </head> |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame^] | 13 | <body ng-style="dataService.bodyStyle" ng-attr-id="{{!dataService.showNavigation ? 'login': ''}}"> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 14 | |
| 15 | <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header> |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame^] | 16 | <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] | 17 | |
Iftekharul Islam | bb5058e | 2017-03-29 13:54:26 -0500 | [diff] [blame^] | 18 | <main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}"> |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 19 | </main> |
| 20 | |
| 21 | <!-- build:js scripts/vendor.min.js --> |
| 22 | <script src="../bower_components/angular/angular.min.js"></script> |
| 23 | <script src="../bower_components/angular-route/angular-route.min.js"></script> |
| 24 | <!-- endbuild --> |
| 25 | |
| 26 | <!-- build:js scripts/app.min.js --> |
| 27 | <script src="index.js"></script> |
| 28 | <script src="templates.js"></script> |
| 29 | <script src="vendors.js"></script> |
| 30 | |
| 31 | <script src="constants/index.js"></script> |
| 32 | <script src="constants/environment-constants.js"></script> |
| 33 | |
| 34 | <script src="common/services/index.js"></script> |
| 35 | <script src="common/services/constants.js"></script> |
| 36 | <script src="common/services/dataService.js"></script> |
| 37 | <script src="common/services/api-utils.js"></script> |
| 38 | <script src="common/services/userModel.js"></script> |
| 39 | <script src="common/services/apiInterceptor.js"></script> |
| 40 | |
| 41 | <script src="common/filters/index.js"></script> |
| 42 | |
| 43 | <script src="common/directives/index.js"></script> |
| 44 | <script src="common/directives/app-header.js"></script> |
| 45 | <script src="common/directives/app-navigation.js"></script> |
| 46 | <script src="common/directives/confirm.js"></script> |
| 47 | |
| 48 | <script src="login/index.js"></script> |
| 49 | <script src="login/controllers/login-controller.js"></script> |
| 50 | <script src="overview/index.js"></script> |
| 51 | <script src="overview/controllers/bmc-reboot-controller.js"></script> |
| 52 | <script src="overview/controllers/power-operations-controller.js"></script> |
| 53 | <script src="overview/controllers/system-overview-controller.js"></script> |
| 54 | <script src="overview/controllers/unit-id-controller.js"></script> |
| 55 | <script src="overview/controllers/log-controller.js"></script> |
| 56 | <!-- endbuild --> |
| 57 | </body> |
| 58 | |
| 59 | </html> |