forked from TylerLH/github-latest-commits-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
30 lines (26 loc) · 807 Bytes
/
sample.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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-178271061-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-178271061-2');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="./dist/javascripts/bundle.min.js"></script>
<link rel="stylesheet" type="text/css" href="./dist/stylesheets/screen.css">
</head>
<body>
<div id="latest-commits-widget">
<div id="latest-commits-header">
<i class="fa fa-github gh-icon"></i>
<h4>Latest Commits</h4>
</div>
<ul id="commit-history"></ul>
</div>
</body>
</html>