-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (95 loc) · 4.69 KB
/
index.html
File metadata and controls
107 lines (95 loc) · 4.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>BenSkev GitHub Repo</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-dark.css">
<link href="css/open-iconic-bootstrap.css" rel="stylesheet">
<link href="css/anim.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div id="header">
<nav>
<li class="fork"><a href="benskev.github.io">Home</a></li>
<!--<li class="downloads"><a href="https://github.com/benskev/spra/zipball/master">ZIP</a></li>
<li class="downloads"><a href="https://github.com/benskev/spra/tarball/master">TAR</a></li>
--><li class="fork"><a href="http://about.me/benskevington">About Me :D</a></li>
<li class="fork"><a href="/contact.html">Contact Meeeee</a></li>
<li class="fork"><a href="https://github.com/benskev">View On GitHub</a></li>
<li class="title">BenSkev GitHub Repo</li>
</nav>
</div><!-- end header -->
<div class="wrapper">
<section>
<div id="title">
<h1>BenSkev GitHub Repo</h1>
<p>Basically just a collection of random computer programs that don't do anything signficant..</p>
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/benskev">benskev</a></span>
<span class="credits right">Hosted on GitHub Pages — Theme by <a href="https://twitter.com/michigangraham">mattgraham</a></span>
</div>
<h3>
<a id="say-waa" class="anchor" href="#say-waa" aria-hidden="true">
<span aria-hidden="true" class="octicon octicon-link"></span>
</a>Say waa is this ish?</h3>
<p>So this is supposed to be a project for code that I push onto github, some crazy projects that i've created and a few
odd ends and bits & bobs. Please feel free to pull any code you like, reuse, and of course, have fun, but please give
me a heads up to go check out the code so that I can see how awesome you are :D</p>
</section>
<div id='projectlist' name='projectlist'>
<h3 class='anchor'>Some stuff i've done</h3><div id='loaderz' name='loaderz' class="windows8">
<div class="wBall" id="wBall_1">
<div class="wInnerBall"></div>
</div>
<div class="wBall" id="wBall_2">
<div class="wInnerBall"></div>
</div>
<div class="wBall" id="wBall_3">
<div class="wInnerBall"></div>
</div>
<div class="wBall" id="wBall_4">
<div class="wInnerBall"></div>
</div>
<div class="wBall" id="wBall_5">
<div class="wInnerBall"></div>
</div>
</div>
</div>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
<script>
$(document).ready(function(){
// init the github data for my repos
var url = "https://api.github.com/users/benskev/repos";
$.get(url,function(data){
console.log("DATA",data);
var str = "";
for(i = 0; i < data.length;i++)
{
var name = data[i].name;
var description = data[i].description;
var url = data[i].html_url;
var pd = data[i].pushed_at.replace("Z"," ").replace("T"," ");
str += "<div id='project-"+i+"'><h2><a href='"+url+"'>"+name+"</a><small><i>"+pd+"</i></small></h2><p>"+description+"</p><hr></div>";
}
$("#projectlist").hide();
document.getElementById("projectlist").innerHTML += str;
$("#projectlist").fadeIn("slow");
$("#loaderz").hide();
//$("#projectlist").text(data);
});
});
</script>
</html>