-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
66 lines (61 loc) · 2 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Citrus</title>
</head>
<body>
<section id="menu"> </section>
<section id="organization-view"> </section>
<section id="project-view"> </section>
<section id="build-view"> </section>
<script type="x-handlebars-template" id="menu-view-template">
<a href="#">Citrus</a> || <a href="#">Yoke</a> || Build 13
</script>
<script type="x-handlebars-template" id="organization-view-template">
<span class="name"> {{name}}</span>
<ul>
{{#each projects}}
<li><a href="#">{{name}}</a> </li>
{{/each}}
</ul>
</script>
<script type="x-handlebars-template" id="project-view-template">
<span class="name"> {{name}}</span>
<ul>
{{#each builds}}
<li> {{id}} </li>
{{/each}}
</ul>
</script>
<script type="x-handlebars-template" id="build-view-template">
<span class="build-name">{{id}}</span>
<span class="rebuild"><a href="#">Rebuild</a></span>
/
<span class="abort"><a href="#">Abort</a></span>
<section id="build-changes">
<span>Changes</span><a href="#">(see on Github)</a>
<p> {{changeName}} </p>
<span>Console logs</span>
<pre id="console-logs">
Started by GitHub push by
Using rake (0.9.2.2)
Using aaronh-chronic (0.3.9)
Using i18n (0.6.0)
Using multi_json (1.3.6)
Using activesupport (3.2.6)
Using builder (3.0.0)
</pre>
</section>
</script>
<footer id="info">
<p>Created by <a href="http://drug.org.pl/">The DRUG crew</a></p>
</footer>
<script src="vendors/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="vendors/underscore.js" type="text/javascript"></script>
<script src="vendors/handlebars-1.0.0.beta.6.js" type="text/javascript"></script>
<script src="vendors/YouAreDaBomb.js" type="text/javascript"></script>
<script src="release/app-debug.js" type="text/javascript"></script>
</body>
</html>