-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.19 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Build Monitor</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/buzz/1.2.0/buzz.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container" data-bind="css: { 'success': buildStatus() === 'SUCCESS', 'failed': buildStatus() === 'FAILURE' } ">
<div>
<h1 data-bind="text: projectName" />
</div>
<div>
<h1 data-bind="text: buildStatusText" />
</div>
<div data-bind="visible: offenderText, css: { 'blink': blink() } ">
<h2 data-bind="text: offenderText" />
</div>
</div>
<script src="script.js"></script>
</body>
</html>