This repository was archived by the owner on Dec 24, 2022. It is now read-only.
forked from startup-systems/mashup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 3.37 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
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Mashup</title>
<!-- Favicon -->
<link rel="shortcut icon" href="http://fvcproductions.github.io/assets/favicons/favicon.ico" />
<link rel="icon" type="image/x-icon" sizes="16x16 32x32" href="http://fvcproductions.github.io/assets/favicons/favicon.ico" />
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- Font Awesome -->
<script src="https://use.fontawesome.com/7bba890d33.js"></script>
<!-- Bootstrap 4 -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Custom JS -->
<!-- <script src="assets/js/app.js" type="text/javascript"></script> -->
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-xs-right">
<li class="nav-item">
<p><code><a href="http://github.com/fvcproductions" target="_blank" role="button">github.com/fvcproductions</a></code></p>
</li>
</ul>
</nav>
<h3 class="text-muted">Mashup</h3>
</div>
<div class="jumbotron">
<h1>Check out my <b>GitHub</b> projects! 😎</h1>
</div>
<div class="projects">
<div class="github-projects card-columns"></div>
</div>
<footer class="footer">
<p class="left">Startup Systems | Cornell Tech</p>
<p class="right">© FVCproductions 2016</p>
</footer>
</div>
<script>
$.ajax({
url: "https://api.github.com/users/FrancesCoronel/repos?callback=?",
dataType: "json",
success: function(data) {
var repos = data.data;
if (repos.length > 1) {
for (var repo in repos) {
if (repos.hasOwnProperty(repo)) {
if (repos[repo].language === null) {
repos[repo].language = "";
}
$('.projects .github-projects').append("<div class='card'><a href='" + repos[repo].html_url + "' target='_blank'><button type='button' class='btn btn-primary-outline'>" + repos[repo].name + "</button></a><div class='card-text'><small class='text-muted'><span><i class='fa fa-star'></i>" + repos[repo].watchers + "</span><span><i class='fa fa-code-fork'></i>" + repos[repo].forks + "</span><span class='lang'><b>" + repos[repo].language + "</span></b></small><p class='card-text'>" + repos[repo].description + "</p>");
}
}
}
},
error: function(request, status, error) {
console.log(error);
}
});
</script>
</body>
</html>