-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (68 loc) · 2.36 KB
/
index.html
File metadata and controls
69 lines (68 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="github/github.png" type="image/x-icon" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.7.5/css/bootstrap-select.min.css">
<title>Github</title>
<!-- <script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script> -->
<script type="text/javascript" src="lib/d3.v3.min.js"></script>
<script type="text/javascript" src="scripts/projetos_tempo.js"></script>
<script type="text/javascript" src="scripts/issues_tempo.js"></script>
<script type="text/javascript" src="scripts/pulls_tempo.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.7.5/js/bootstrap-select.min.js"></script>
<link rel="stylesheet" href="css/main.css">
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
</head>
<body>
<div class="cabecalho">
<div class="titulo">
GitHub
</div>
<div id="busca">
<select id="lang" class="selectpicker" data-style="btn-light" data-live-search="true">
<option value="">Selecione a linguagem</option>
<option>JavaScript</option>
<option>Python</option>
<option>Ruby</option>
<option>Java</option>
<option>PHP</option>
<option>CSS</option>
<option>C++</option>
<option>C</option>
<option>Shell</option>
<option>HTML</option>
<option>C#</option>
<option>Objective-C</option>
<option>Go</option>
<option>Perl</option>
<option>CoffeeScript</option>
<option>Scala</option>
<option>VimL</option>
<option>Haskell</option>
<option>Lua</option>
<option>R</option>
</select>
<div id="button-busca">
<button class="btn btn-success" onclick="issuesPorLinguagem()">
Issues
</button>
</div>
<div id="button-busca">
<button class="btn btn-success" onclick="pullsPorLinguagem()">
Pull requests
</button>
</div>
<div id="button-busca">
<button class="btn btn-success" onclick="projetosPorAno()">
Repositórios
</button>
</div>
</div>
</div>
<div id="chart" align="center"></div>
</body>
</html>