treeherder/ui/index.html

27 строки
932 B
HTML
Executable File

<!DOCTYPE html>
<html ng-app="treeherder.app" ng-strict-di>
<head>
<meta charset="utf-8">
<title ng-bind="getWindowTitle()">Treeherder</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link id="favicon" type="image/png" rel="shortcut icon" href="img/tree_open.png">
</head>
<body ng-controller="MainCtrl">
<div id="global-container" class="d-flex flex-column h-100">
<div
id="onscreen-overlay"
ng-if="onscreenOverlayShowing"
ng-click="setOnscreenShortcutsShowing(false)">
<div id="onscreen-shortcuts">
<div class="col-8">
<shortcut-table onscreen-shortcuts-showing="onscreenShortcutsShowing" />
</div>
</div>
</div>
<job-view />
</div>
</body>
</html>