-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
92 lines (81 loc) · 3.12 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!--
____ _ _ ____
/ ___| | | | _ \ ___ ___ _ _ _ __ ___ ___
| | _| |_| | |_) / _ \/ __| | | | '_ ` _ \ / _ \
| |_| | _ | _ < __/\__ \ |_| | | | | | | __/
\____|_| |_|_| \_\___||___/\__,_|_| |_| |_|\___|
^-^ Oh my ugly codes!
Github: hit9
-->
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>GhResume</title>
<!-- bootstrap css -->
<link rel="stylesheet" href="vendors/bootstrap/css/bootstrap.min.css"/>
<!-- use impress demo's font, thanks! -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic" rel="stylesheet" />
<link rel="stylesheet"type="text/css" href="vendors/easy-pie-chart/jquery.easy-pie-chart.css">
<!-- rusume style sheet -->
<link rel="stylesheet" href="css/ghresume.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="vendors/easy-pie-chart/jquery.easy-pie-chart.js"></script>
<!-- application js -->
<script src="js/ghresume.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="container" id="user">
<!-- avatar from gravatar-->
<div class="row">
<div class="span3" id="avatar_container">
<!-- Is it ok to use this cute cat here? -->
<img src="https://a248.e.akamai.net/assets.github.com/images/spinners/octocat-spinner-128.gif?1347543527" alt="avatar" id="avatar" height="170" width="170" />
</div>
<!-- header: avatar, name, login-name-->
<div class="span4 offset1">
<h1 id="name"></h1>
<!-- user infomation list -->
<div id="user-info-container">
<ul id="user-info">
<li id="location">
<i class="icon-map-marker icon-white"></i>
</li>
<li id="email">
<i class="icon-envelope icon-white"></i>
</li>
<li id="company">
<i class="icon-user icon-white"></i>
</li>
<li id="blog">
<i class="icon-home icon-white"></i>
</li>
</ul>
</div>
</div>
<!-- followers circle -->
<div class="span2 offset1" id="followers">
<div id="follower-number" class="circle">
</div>
<h2>follower</h2>
</div>
</div>
</div>
</div>
<div class="container" id="gh-data">
<h2>Skills</h2>
<hr>
</div>
<div class="container" id="repos">
<h2>Popular Repositories</h2>
<hr>
<ul id="repolist">
</ul>
<p style="text-align:center;clear:both; color:#999">Powered by GhResume licensing BSD</p>
</div>
<!-- fork me on github banner -->
<a href="https://github.com/hit9/GhResume">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub">
</a>
</body>
</html>