-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·116 lines (99 loc) · 4.3 KB
/
index.html
File metadata and controls
executable file
·116 lines (99 loc) · 4.3 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="./favicon.ico">
<title>Zetacoin Developer</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<style>.navbar { margin-bottom: 0px}
input { margin-bottom:20px;}
.navbar-brand-img {
width:36px;
top:-10px;
position:relative;
vertical-align:top;
}</style>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="./js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="row">
<div class="navbar-header">
<a class="navbar-brand" href="./index.html">
<img class="navbar-brand-img" src="./img/zetaicon.png"/>
Zetacoin Official Developers page</a>
</div>
<div class="navbar-collapse collapse pull-right">
</div>
</div>
</div>
</div>
<div class="container" style="margin-top:50px">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-10 col-md-offset-1" role="form" style="text-align:center">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-code-fork"></i> <span id="contributers_count">Contributers</span></h3>
</div>
<div class="panel-body">
<div class="container-fluid">
<p>Below is a list of some pretty awesome people around the world that have helped make Zetacoin a better place for everyone. The world will thank you!</p>
<span id="contributers"><i class="fa fa-spinner fa-spin"></i> Loading contributers list from GitHub.</span>
</div>
</div>
</div>
</div>
</div>
<br/><hr/><br/>
<div class="row">
<div class="col-md-offset-1 col-md-11">
<h2>Other Zetacoin Site</h2>
<ul>
<li><a href="http://zetacoin.cc">Zetacoin.cc</a></li>
<li><a href="http://zeta-coin.org">Zeta-coin.org</a></li>
<li><a href="https://nobs.is/">Nobs.is</a></li>
<li><a href="http://zetspin.cc/">Zetspin.cc</a></li>
<li><a href="http://zetacoin.cc/faqs/">FAQ about Zetacoin</a></li>
</ul>
</div>
</div>
<br/><hr/><br/>
<footer style="background-color: #EEE;">
<p>Made By <a href="http://twitter.com/th3zer0">TheZero</a></p>
<p>Other Project form TheZero and ZBAD405: <a href="http://github.com/zbad405">GitHub</a></p>
</footer>
</div> <!-- /container -->
<script>
//This has to be at the end of the page because all the scripts are loaded async
//https://api.github.com/repos/wreiske/shellshocker/contributors
$(function(){
var jqxhr = $.getJSON("https://api.github.com/orgs/zeta-dev/public_members", function(data) {
$("#contributers_count").html(data.length + ' Contributers to Zetacoin');
$("#contributers").html('<div class="row">');
$.each(data, function( index, value ) {
$("#contributers").append('<div class="col-xs-6 col-md-3"> <div class="thumbnail"><a href="'+value.html_url+'"><img src="'+value.avatar_url+'" alt="'+value.login+'"></a><div class="caption"><h3>'+value.login+'</h3><p><a target="_blank" href="'+value.html_url+'" class="btn btn-primary" role="button">GitHub</a></p></div></div></div>');
});
$("#contributers").append('</div>');
})
.fail(function() {
$("#contributers").html('Error loading contributers... Connection issues?');
});
})
</script>
</body>
</html>