-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 4.23 KB
/
index.html
File metadata and controls
82 lines (82 loc) · 4.23 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
<!DOCTYPE html>
<html>
<head>
<title>GitHub Release Stats</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' 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">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-navbar">
<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=".">
<!-- all icons from https://getbootstrap.com/docs/3.3/components/#glyphicons -->
<span class="glyphicon glyphicon-stats"></span>
GitHub Release Stats
</a>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/0x00G/Realease-Stats" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" alt="View GitHub repository" title="Release Stats GitHub Repository" align="top" height="18" />
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<h1>Enter project details ...</h1>
<div class="form form-inline">
<div class="form-group">
<input type="text" class="form-control" id="username" placeholder="user or organization name">
</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">Show release statistics!</button>
</div>
</div>
</div>
<div class="row" id="description"><br>
<h1>... and get the latest release stats for any public repo on GitHub :</h1>
<br><br>
<p>
<span style="font-size:9em; color:lightgrey" class="glyphicon glyphicon-tag" title="Release Tag"></span>  
<span style="font-size:9em; color:lightgrey" class="glyphicon glyphicon-calendar" title="Release Date"></span>  
<span style="font-size:9em; color:lightgrey" class="glyphicon glyphicon-user" title="Release Author"></span>  
<span style="font-size:9em; color:lightgrey" class="glyphicon glyphicon-download" title="Release Downloads"></span> 
<span style="font-size:1.3em; color:lightgrey"><b>and more</b></span>
</p>
</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">
Originally made with <span class="glyphicon glyphicon-heart"></span> by <a href="https://github.com/0x00G" target="_blank">0x00G</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>
</html>