forked from alexbeletsky/github-commits-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 964 Bytes
/
index.html
File metadata and controls
34 lines (30 loc) · 964 Bytes
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
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>github.commits.widget example</title>
<meta name="description" content="github.commits.widget example">
<meta name="author" content="alexander beletsky">
</head>
<body>
<div id="container">
<div id="main">
<div id="github-commits"></div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<!-- Testing and development -->
<script src="js/github.js"></script>
<script src="js/md5.js"></script>
<script src="js/github.commits.widget.js"></script>
<!-- Combined and minified
<script src="js/github.commits.widget-min.js"></script>
-->
<script>
$(function() {
$('#github-commits').githubInfoWidget(
{ user: 'alexanderbeletsky', repo: 'github.commits.widget', branch: 'master', last: 15, limitMessageTo: 30 });
});
</script>
</body>
</html>