-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
101 lines (99 loc) · 3.07 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<head>
<title>Contributors | GEAR Systems
</title>
</head>
<meta charset="utf-8">
<link href="./styles.css" rel="stylesheet">
<style>
.no-js #loader { display: none; }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url(loader.gif) center no-repeat #fff;
}
</style>
<body>
<div class="se-pre-con"></div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Contributors | GEAR Systems</a>
<ul class="nav navbar-nav navbar-right">
<li><a href="issues.html">GEAR Issue Tracker</a></li>
</ul>
</div>
</div>
</nav>
<script type="text/javascript" src="js/googlejsapi.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/index.js"></script>
<div>
<div class="col-lg-4" style="float:left">
<div id="Commits" style="height: 500px;"></div>
</div>
<div class="col-lg-4" style="float:left">
<div id="Additions" style="height: 500px;"></div>
</div>
<div class="col-lg-4" style="float:left">
<div id="Deletions" style="height: 500px;"></div>
</div>
</div>
<div>
<div class="col-lg-4" style="float:left">
<div id="barchart_commit" style="height: 500px;"></div>
</div>
<div class="col-lg-4" style="float:left">
<div id="barchart_addition" style="height: 500px;"></div>
</div>
<div class="col-lg-4" style="float:left">
<div id="barchart_deletion" style="height: 500px;"></div>
</div>
</div>
<!-- for language-->
<div class="bs-docs-section">
<div class="row">
<div class="col-lg-12">
<h1>We use quite a lot of languages to build the software that you see today.</h1>
<div id="languages"></div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="bs-component">
<div id="languages">
</div>
</div>
</div>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58436732-3', 'auto');
ga('send', 'pageview');
</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
<script>
//paste this code under head tag or in a seperate js file.
// Wait for window load
$(window).load(function() {
// Animate loader off screen
$(".se-pre-con").fadeOut("slow");;
});
</script>
</body>
</html>