-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
54 lines (44 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1">
<title>my open source gallery</title>
<link id="default-css" rel="stylesheet" href="css/screen.css">
<link id="theme-css" rel="stylesheet" href="css/themes/blue.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<script id="category-item" type="text/template">
<section>
<h1>{{category_name}}</h1>
</section>
</script>
<script id="repository-item" type="text/template">
<article>
<div>
<h2><a href="{{html_url}}">{{name}}</a></h2>
<p>{{description}}</p>
<a href="{{homepage}}" target="_blank">{{homepage}}</a>
</div>
</article>
</script>
<footer>
<img src="img/cat.png" alt="Github's Logo" />
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://twitter.github.com/hogan.js/builds/2.0.0/hogan-2.0.0.min.js"></script>
<script src="scripts/css3-mediaqueries.js"></script>
<script src="scripts/hub.me.js"></script>
<script>
$('body').hubMe({
'username': 'clark-kent', // you're not Clark Kent, right?
'theme': 'gray', // available themes: blue (default), black & gray
'exclude': ['wormz', 'cufon'], // exclude project by name
'languages': true // sort repos by languages true : false
});
</script>
</body>
</html>