summaryrefslogtreecommitdiffstats
path: root/app/index.html
blob: 63ee7789f3213bb601605765133cd25833d89e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html ng-app="app" ng-csp lang="en">

<head>
    <meta http-equiv="Content-Security-Policy" content="%%CSP_CONTENT%%">
    <meta charset="UTF-8">
    <title>OpenBMC</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <base href="/">
</head>
<body ng-style="dataService.bodyStyle" ng-attr-id="{{!dataService.showNavigation ? 'login': ''}}">

    <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header>
    <app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataService.showNavigation"></app-navigation>

    <main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}">
    </main>

    <errors></errors>
</body>
</html>
OpenPOWER on IntegriCloud