xref: /openbmc/phosphor-webui/app/index.html (revision bb5058e741e4f382bb17c050db35c9094b638c49)
199d199f3SIftekharul Islam<!DOCTYPE html>
299d199f3SIftekharul Islam<html lang="en" ng-app="app">
399d199f3SIftekharul Islam<head>
499d199f3SIftekharul Islam    <base href="/">
599d199f3SIftekharul Islam    <meta charset="UTF-8">
699d199f3SIftekharul Islam    <title>openBMC</title>
799d199f3SIftekharul Islam    <link rel="icon" href="favicon.ico?v=2"/>
899d199f3SIftekharul Islam    <!-- build:css styles/app.min.css -->
999d199f3SIftekharul Islam    <link rel="stylesheet" href="styles/index.css">
103a0d471cSMichael Davis
1199d199f3SIftekharul Islam    <!-- endbuild -->
1299d199f3SIftekharul Islam</head>
13*bb5058e7SIftekharul Islam<body ng-style="dataService.bodyStyle" ng-attr-id="{{!dataService.showNavigation ? 'login': ''}}">
1499d199f3SIftekharul Islam
1599d199f3SIftekharul Islam    <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header>
1699d199f3SIftekharul Islam    <app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataService.showNavigation"></app-navigation>
1799d199f3SIftekharul Islam
18*bb5058e7SIftekharul Islam    <main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}">
1999d199f3SIftekharul Islam    </main>
2099d199f3SIftekharul Islam
2199d199f3SIftekharul Islam	<!-- build:js scripts/vendor.min.js -->
2299d199f3SIftekharul Islam	<script src="../bower_components/angular/angular.min.js"></script>
2399d199f3SIftekharul Islam	<script src="../bower_components/angular-route/angular-route.min.js"></script>
2499d199f3SIftekharul Islam	<!-- endbuild -->
2599d199f3SIftekharul Islam
2699d199f3SIftekharul Islam	<!-- build:js scripts/app.min.js -->
2799d199f3SIftekharul Islam	<script src="index.js"></script>
2899d199f3SIftekharul Islam	<script src="templates.js"></script>
2999d199f3SIftekharul Islam	<script src="vendors.js"></script>
3099d199f3SIftekharul Islam
3199d199f3SIftekharul Islam	<script src="constants/index.js"></script>
3299d199f3SIftekharul Islam	<script src="constants/environment-constants.js"></script>
3399d199f3SIftekharul Islam
3499d199f3SIftekharul Islam	<script src="common/services/index.js"></script>
3599d199f3SIftekharul Islam	<script src="common/services/constants.js"></script>
3699d199f3SIftekharul Islam	<script src="common/services/dataService.js"></script>
3799d199f3SIftekharul Islam	<script src="common/services/api-utils.js"></script>
3899d199f3SIftekharul Islam	<script src="common/services/userModel.js"></script>
3999d199f3SIftekharul Islam	<script src="common/services/apiInterceptor.js"></script>
4099d199f3SIftekharul Islam
4199d199f3SIftekharul Islam	<script src="common/filters/index.js"></script>
4299d199f3SIftekharul Islam
4399d199f3SIftekharul Islam	<script src="common/directives/index.js"></script>
4499d199f3SIftekharul Islam	<script src="common/directives/app-header.js"></script>
4599d199f3SIftekharul Islam	<script src="common/directives/app-navigation.js"></script>
4699d199f3SIftekharul Islam	<script src="common/directives/confirm.js"></script>
4799d199f3SIftekharul Islam
4899d199f3SIftekharul Islam	<script src="login/index.js"></script>
4999d199f3SIftekharul Islam	<script src="login/controllers/login-controller.js"></script>
5099d199f3SIftekharul Islam	<script src="overview/index.js"></script>
5199d199f3SIftekharul Islam	<script src="overview/controllers/bmc-reboot-controller.js"></script>
5299d199f3SIftekharul Islam	<script src="overview/controllers/power-operations-controller.js"></script>
5399d199f3SIftekharul Islam	<script src="overview/controllers/system-overview-controller.js"></script>
5499d199f3SIftekharul Islam	<script src="overview/controllers/unit-id-controller.js"></script>
5599d199f3SIftekharul Islam	<script src="overview/controllers/log-controller.js"></script>
5699d199f3SIftekharul Islam	<!-- endbuild -->
5799d199f3SIftekharul Islam</body>
5899d199f3SIftekharul Islam
5999d199f3SIftekharul Islam</html>
60