blob: 502424da88f1388b10a1f20a9e1c8a2c79fbe1b2 [file] [log] [blame]
Ed Tanousbbcf6702017-10-06 13:53:06 -07001<!doctype html>
2<html ng-app="app" lang="en">
Michael Davis3a0d4712017-03-27 14:01:34 -05003
Ed Tanousbbcf6702017-10-06 13:53:06 -07004<head>
5 <meta charset="UTF-8">
6 <title>openBMC App</title>
7 <link rel="icon" type="image/x-icon" href="/img/favicon.ico">
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9
10 <base href="/">
Iftekharul Islam99d199f2017-03-24 15:28:25 -050011</head>
Iftekharul Islambb5058e2017-03-29 13:54:26 -050012<body ng-style="dataService.bodyStyle" ng-attr-id="{{!dataService.showNavigation ? 'login': ''}}">
Iftekharul Islam99d199f2017-03-24 15:28:25 -050013
14 <app-header ng-if="dataService.showNavigation" path="dataService.path"></app-header>
Iftekharul Islambb5058e2017-03-29 13:54:26 -050015 <app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataService.showNavigation"></app-navigation>
Iftekharul Islam99d199f2017-03-24 15:28:25 -050016
Iftekharul Islambb5058e2017-03-29 13:54:26 -050017 <main ng-view ng-class="{'content__container': dataService.showNavigation, 'login__wrapper': !dataService.showNavigation}">
Iftekharul Islam99d199f2017-03-24 15:28:25 -050018 </main>
19
Iftekharul Islam99d199f2017-03-24 15:28:25 -050020</body>
Iftekharul Islam99d199f2017-03-24 15:28:25 -050021</html>