зеркало из https://github.com/mozilla/treeherder.git
32 строки
1.2 KiB
HTML
Executable File
32 строки
1.2 KiB
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">
|
|
<th-favicon-link></th-favicon-link>
|
|
</head>
|
|
<body ng-controller="MainCtrl">
|
|
<div id="global-container">
|
|
<div id="onscreen-overlay" ng-if="onscreenOverlayShowing"
|
|
ng-click="setOnscreenShortcutsShowing(false)">
|
|
<div id="onscreen-shortcuts" ng-if="onscreenShortcutsShowing"
|
|
stop-propagation-on-left-click>
|
|
<div class="col-8">
|
|
<ng-include src="'partials/main/thShortcutTable.html'"></ng-include>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<job-view
|
|
revision="revision"
|
|
current-repo="currentRepo"
|
|
repo-name="repoName"
|
|
selected-job="selectedJob"
|
|
/>
|
|
</div>
|
|
|
|
<th-notification-box></th-notification-box>
|
|
</body>
|
|
</html>
|