forked from fedora-infra/apps.fp.o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (66 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{{name}}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="https://apps.fedoraproject.org/global/fedora-bootstrap-1.0.2/fedora-bootstrap.css"
type="text/css" rel="stylesheet" />
<link type="text/css" rel="stylesheet" href="css/site.css" />
</head>
<body onload="init();">
<div id="wrap" class="container-fluid">
<div class="masthead pl-2">
{{{logo}}}
</div>
<div id="details-container">
<h1 class="logo-wrapper"></h1>
<div id="details">
</div><!--/.well -->
</div>
<div class="hero-unit bodycontent">
<div id="mainvis"></div>
<noscript>
<iframe name="noscript-fallback" width="100%" height="100%"
src="apps-yaml.html"></iframe>
</noscript>
</div>
</div><!--/.fluid-container-->
<div id="footer">
<p class="text-muted credit">
©2012 - 2017 Red Hat, Inc.,
<a href="http://threebean.org">Ralph Bean</a>.
You can get the source <a href="http://github.com/fedora-infra/apps.fp.o">
from the github repo</a>.
</p>
</div>
</body>
<script language="javascript" type="text/javascript" src="js/jquery-2.1.0.min.js">
</script>
<script language="javascript" type="text/javascript" src="js/handlebars-v3.0.3.min.js">
</script>
<script language="javascript" type="text/javascript" src="js/config.js">
</script>
<script type="text/javascript" src="https://apps.fedoraproject.org/global/fedora-bootstrap-1.0.2/fedora-bootstrap.js">
</script>
<script>
var templates = ['title', '.masthead'];
// Make handlebars aware of the templates we defined
$.each(templates, function(i, selector) {
Handlebars.registerPartial(selector, $(selector).html());
});
// Compile, render, and insert..
$.each(templates, function(i, selector) {
var source = $(selector).html();
var template = Handlebars.compile(source);
var html = template(config);
$(selector).html(html);
});
</script>
<!-- Load our graphing library, data, and the code to kick that all off. -->
<script language="javascript" type="text/javascript" src="js/jit/jit.js">
</script>
<script language="javascript" type="text/javascript" src="js/data.js">
</script>
<script language="javascript" type="text/javascript" src="js/graph.js">
</script>
</html>