-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (62 loc) · 2.31 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
<!DOCTYPE html>
<html>
<head>
<title>JupyterLab Stats</title>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<!-- Custom -->
<link rel="stylesheet" type="text/css" href="style.css">
<script src="app.js"></script>
</head>
<body>
<div class="container">
<div class='wrap'>
<div class='content'>
<h4 id="stuff" class="hidden"></h4>
</div>
</div>
<div class="row header">
<div class="col-md-4 logo">
<img src="images/logo.svg" style="height: 90px;">
</div>
<div class="col-md-2 icon">
<img src="images/star.svg"/> <span id="stars">0</span>
</div>
<div class="col-md-2 icon">
<img src="images/repo-forked.svg"/> <span id="forks">0</span>
</div>
<div class="col-md-2 icon">
<img src="images/issue-opened.svg"/> <span id="issues">0</span>
</div>
<div class="col-md-2 icon">
<img src="images/git-pull-request.svg"/> <span id="pull">0</span>
</div>
</div>
<div class="row bottom">
<!-- Pull Requests -->
<div class="col-md-4 PR">
<h1>Pull Requests</h1>
<div class ="colcontainer">
<div class="cards-pulls"></div>
</div>
</div>
<!-- Activity -->
<div class="col-md-4 ACT">
<h1>Activity</h1>
<div class ="colcontainer">
<div class="cards-activity"></div>
</div>
</div>
<!-- Gitter -->
<div class="col-md-4 pull-right gitter">
<h1>Gitter</h1>
<div class ="colcontainer">
<iframe id="gitter" src="https://gitter.im/jupyter/jupyterlab/~embed" align="left">
</div>
</div>
</div>
</div>
</body>
</html>