forked from Somsubhra/github-release-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (112 loc) · 3.3 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
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Github Downloads</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Get the latest release stats like download counts, release dates, author on any Github project"
/>
<meta name="keywords" content="Github, release, download, count" />
<link rel="icon" href="img/favicon.ico" />
<link
href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="third-party/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand text-center" href=".">
<span class="glyphicon glyphicon-stats"></span>
GithubDownloads.com
</a>
</div>
</div>
</nav>
<div class="container">
<div class="row" id="search">
<div class="col-md-4 col-md-offset-4">
<h1>Github Project</h1>
<div class="form form-inline">
<div class="form-group">
<input
type="text"
class="form-control"
id="username"
placeholder="Github username"
/>
</div>
<div class="form-group">
<input
type="text"
class="form-control"
id="repository"
placeholder="Repository name"
/>
</div>
<button class="btn btn-primary" id="get-stats-button">
Get Downloads!
</button>
</div>
</div>
</div>
<div class="row" id="title">
<h1><span class="username"></span>/<span class="repository"></span></h1>
<span class="description">release stats</span>
</div>
<div class="row" id="stats-result"></div>
<div id="loader-gif"><img src="img/gif-load.gif" /></div>
</div>
<div id="footer">
<div class="container">
Github fork from
<a
href="https://github.com/Somsubhra/github-release-stats"
target="_blank"
>Somsubhra</a
>
</div>
</div>
</body>
<script
type="text/javascript"
src="third-party/jquery/jquery-1.11.1.min.js"
></script>
<script
type="text/javascript"
src="third-party/bootstrap/js/bootstrap.min.js"
></script>
<script
type="text/javascript"
src="third-party/typahead/bootstrap3-typeahead.min.js"
></script>
<script type="text/javascript" src="js/main.js"></script>
<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",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-74229503-2", "auto");
ga("send", "pageview");
</script>
</html>