-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-repos.html
31 lines (31 loc) · 930 Bytes
/
github-repos.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
<!DOCTYPE html>
<html>
<head>
<title>Carolyn's Github Repositories</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="list-group"></div>
</div>
<div class="col-md-7">
<table class="table">
<thead>
<th>sha</th>
<th>Author</th>
<th>Message</th>
<th>Date</th>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="repos.js"></script>
<script type="text/javascript" src="commits.js"></script>
</body>
</html>