mirror of
https://github.com/resume/resume.github.com.git
synced 2025-12-20 10:30:06 -06:00
Merge pull request #176 from acrogenesis/tab-space-format
Tab space format
This commit is contained in:
22
index.html
22
index.html
@@ -1,18 +1,18 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<title>GitHub Résumé</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<meta name="keywords" content="cv, resume, hResume, github, community, free, fun, nice, useful" />
|
||||
<meta name="description" content="GitHub resumes, generated by the community, for the community." />
|
||||
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.7.0/build/reset-fonts-grids/reset-fonts-grids.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="css/resume.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
|
||||
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
|
||||
<script type="text/javascript" src="js/mustache.js"></script>
|
||||
<script type="text/javascript" src="js/githubresume.js"></script>
|
||||
<title>GitHub Résumé</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<meta name="keywords" content="cv, resume, hResume, github, community, free, fun, nice, useful" />
|
||||
<meta name="description" content="GitHub resumes, generated by the community, for the community." />
|
||||
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.7.0/build/reset-fonts-grids/reset-fonts-grids.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="css/resume.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
|
||||
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
|
||||
<script type="text/javascript" src="js/mustache.js"></script>
|
||||
<script type="text/javascript" src="js/githubresume.js"></script>
|
||||
</head>
|
||||
<body id="resume">
|
||||
<noscript>You need to enable Javascript to generate and see résumé pages.</noscript>
|
||||
<noscript>You need to enable Javascript to generate and see résumé pages.</noscript>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -185,12 +185,12 @@ var run = function() {
|
||||
since: since,
|
||||
resume_url: window.location
|
||||
};
|
||||
|
||||
|
||||
// We consider a limit of 4 months since the GitHub opening (Feb 2008) to be considered as an early adopter
|
||||
if ((since == '2008' && sinceMonth <= 5) || since <= '2007') {
|
||||
view.earlyAdopter = 1;
|
||||
}
|
||||
|
||||
|
||||
view.userStatus = getUserStatus();
|
||||
function getUserStatus() {
|
||||
var COEF_REPOS = 2;
|
||||
@@ -203,22 +203,22 @@ var run = function() {
|
||||
var FOURTH_STEP = 50;
|
||||
var FIFTH_STEP = 150;
|
||||
var EXTRA_POINT_GAIN = 1;
|
||||
|
||||
|
||||
var statusScore = data.public_repos * COEF_REPOS
|
||||
+ data.public_gists * COEF_GISTS
|
||||
+ data.followers * COEF_FOLLOWERS
|
||||
+ data.following * COEF_FOLLOWING;
|
||||
|
||||
|
||||
// Extra points
|
||||
// - Early adopter
|
||||
if (view.earlyAdopter == 1) {
|
||||
statusScore += EXTRA_POINT_GAIN;
|
||||
}
|
||||
// - Blog & Email & Location
|
||||
if (view.location && view.location != '' && view.email && view.email != '' && data.blog && data.blog != '') {
|
||||
statusScore += EXTRA_POINT_GAIN;
|
||||
}
|
||||
|
||||
if (view.location && view.location != '' && view.email && view.email != '' && data.blog && data.blog != '') {
|
||||
statusScore += EXTRA_POINT_GAIN;
|
||||
}
|
||||
|
||||
if (statusScore == FIRST_STEP) {
|
||||
return 'Inactive GitHub user';
|
||||
}
|
||||
@@ -238,7 +238,7 @@ var run = function() {
|
||||
return 'Passionate GitHub user';
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
if (data.blog !== undefined && data.blog !== null && data.blog !== '') {
|
||||
view.website = addHttp + data.blog;
|
||||
}
|
||||
|
||||
102
views/index.html
102
views/index.html
@@ -1,67 +1,67 @@
|
||||
<div id="doc" class="yui-t7">
|
||||
<div id="hd" role="banner"><h1>My GitHub Résumé</h1></div>
|
||||
<div id="bd" role="main">
|
||||
<div id="hd" role="banner"><h1>My GitHub Résumé</h1></div>
|
||||
<div id="bd" role="main">
|
||||
<div class="yui-g">
|
||||
<p class="enlarge-medium">
|
||||
As a software startup owner I really enjoy when people send us their
|
||||
résumés and they include their github account so we can see tangible work they have done.
|
||||
</p>
|
||||
<p><br /></p>
|
||||
<p class="enlarge-medium">
|
||||
After a <a href="https://twitter.com/#!/jeresig/status/33968704983138304">tweet by John Resig</a>
|
||||
I imagined that it may be nice for people to be able to generate their <a href="https://github.com" title="GitHub">GitHub</a> résumés.
|
||||
</p>
|
||||
<p><br /><br /></p>
|
||||
<p class="enlarge-medium">
|
||||
As a software startup owner I really enjoy when people send us their
|
||||
résumés and they include their github account so we can see tangible work they have done.
|
||||
</p>
|
||||
<p><br /></p>
|
||||
<p class="enlarge-medium">
|
||||
After a <a href="https://twitter.com/#!/jeresig/status/33968704983138304">tweet by John Resig</a>
|
||||
I imagined that it may be nice for people to be able to generate their <a href="https://github.com" title="GitHub">GitHub</a> résumés.
|
||||
</p>
|
||||
<p><br /><br /></p>
|
||||
|
||||
<form id="run" action="." method="get">
|
||||
<p>
|
||||
<input id="username" type="text" placeholder="Enter your github username and click on generate" />
|
||||
<button type="submit" id="gen">Generate</button>
|
||||
</p>
|
||||
</form>
|
||||
<form id="run" action="." method="get">
|
||||
<p>
|
||||
<input id="username" type="text" placeholder="Enter your github username and click on generate" />
|
||||
<button type="submit" id="gen">Generate</button>
|
||||
</p>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="yui-g">
|
||||
<p><br /><br /></p>
|
||||
<h2>See some popular users</h2>
|
||||
<div class="yui-gb">
|
||||
<ul>
|
||||
<li><a href="/?mxcl" title="Max Howell">Max Howell</a></li>
|
||||
<li><a href="/?mojombo" title="Tom Preston-Werner">Tom Preston-Werner</a></li>
|
||||
<p><br /><br /></p>
|
||||
<h2>See some popular users</h2>
|
||||
<div class="yui-gb">
|
||||
<ul>
|
||||
<li><a href="/?mxcl" title="Max Howell">Max Howell</a></li>
|
||||
<li><a href="/?mojombo" title="Tom Preston-Werner">Tom Preston-Werner</a></li>
|
||||
|
||||
<li><a href="/?madrobby" title="Thomas Fuchs">Thomas Fuchs</a></li>
|
||||
<li><a href="/?paulirish" title="Paul Irish">Paul Irish</a></li>
|
||||
<li class=""><a href="/?michaeldv" title="Michael Dvorkin">Michael Dvorkin</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="yui-gb">
|
||||
<ul>
|
||||
<li><a href="/?mislav" title="Mislav Marohnić">Mislav Marohnić</a></li>
|
||||
<li><a href="/?justinfrench" title="Justin French">Justin French</a></li>
|
||||
<li><a href="/?ry" title="Ryan Dahl">Ryan Dahl</a></li>
|
||||
<li><a href="/?joshuaclayton" title="Joshua Clayton">Joshua Clayton</a></li>
|
||||
<li class=""><a href="/?defunkt" title="Chris Wanstrath">Chris Wanstrath</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
<li><a href="/?madrobby" title="Thomas Fuchs">Thomas Fuchs</a></li>
|
||||
<li><a href="/?paulirish" title="Paul Irish">Paul Irish</a></li>
|
||||
<li class=""><a href="/?michaeldv" title="Michael Dvorkin">Michael Dvorkin</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="yui-gb">
|
||||
<ul>
|
||||
<li><a href="/?mislav" title="Mislav Marohnić">Mislav Marohnić</a></li>
|
||||
<li><a href="/?justinfrench" title="Justin French">Justin French</a></li>
|
||||
<li><a href="/?ry" title="Ryan Dahl">Ryan Dahl</a></li>
|
||||
<li><a href="/?joshuaclayton" title="Joshua Clayton">Joshua Clayton</a></li>
|
||||
<li class=""><a href="/?defunkt" title="Chris Wanstrath">Chris Wanstrath</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<br />
|
||||
</div>
|
||||
|
||||
<div class="yui-g last">
|
||||
<div class="yui-main">
|
||||
<br /><br />
|
||||
<h2>Notes, Information and Future features</h2>
|
||||
<p class="enlarge-medium"><br />
|
||||
This is the first version. I am planning on adding
|
||||
things as such as your most committed forks, most committed repositories and make the "My Popular Repositories" be built from
|
||||
your complete list of repositories. Feel free to <a href="https://github.com/resume/resume.github.com">fork the page</a> if you want to help :-)
|
||||
<br /><br />
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="yui-main">
|
||||
<br /><br />
|
||||
<h2>Notes, Information and Future features</h2>
|
||||
<p class="enlarge-medium"><br />
|
||||
This is the first version. I am planning on adding
|
||||
things as such as your most committed forks, most committed repositories and make the "My Popular Repositories" be built from
|
||||
your complete list of repositories. Feel free to <a href="https://github.com/resume/resume.github.com">fork the page</a> if you want to help :-)
|
||||
<br /><br />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="ft" role="contentinfo"><p>Brought to you by the brilliant mind of <a href="http://twitter.com/davidcoallier">@davidcoallier</a> </modesty> — Résumé Template from <a href="http://thingsthatarebrown.com/blog/2009/05/sample-resume-template/">Things That Are Brown</a></p></div>
|
||||
<div id="ft" role="contentinfo"><p>Brought to you by the brilliant mind of <a href="http://twitter.com/davidcoallier">@davidcoallier</a> </modesty> — Résumé Template from <a href="http://thingsthatarebrown.com/blog/2009/05/sample-resume-template/">Things That Are Brown</a></p></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
<div class="job {{last}}">
|
||||
<h2>
|
||||
<a href="http://github.com/{{username}}/{{name}}">{{name}}</a>
|
||||
</h2>
|
||||
<h3>{{#language}}{{language}} - {{/language}}Creator & Owner</h3>
|
||||
<h4>{{date}}</h4>
|
||||
<p>{{description}}</p>
|
||||
<p>
|
||||
This repository has {{watchers}} {{watchersLabel}} and {{forks}} {{forksLabel}}.
|
||||
If you would like more information about this repository and my
|
||||
contributed code, please visit
|
||||
<a href="https://github.com/{{username}}/{{name}}">the repo</a> on
|
||||
GitHub.
|
||||
</p>
|
||||
<h2>
|
||||
<a href="http://github.com/{{username}}/{{name}}">{{name}}</a>
|
||||
</h2>
|
||||
<h3>{{#language}}{{language}} - {{/language}}Creator & Owner</h3>
|
||||
<h4>{{date}}</h4>
|
||||
<p>{{description}}</p>
|
||||
<p>
|
||||
This repository has {{watchers}} {{watchersLabel}} and {{forks}} {{forksLabel}}.
|
||||
If you would like more information about this repository and my
|
||||
contributed code, please visit
|
||||
<a href="https://github.com/{{username}}/{{name}}">the repo</a> on
|
||||
GitHub.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
<div id="hd" role="banner"><h1>This user hasn't opted in</h1></div>
|
||||
<div id="bd" role="main">
|
||||
<div class="yui-g">
|
||||
<p>This user has <strong>not</strong> opted in to this unofficial GitHub résumé service.</p>
|
||||
<br />
|
||||
<p>If you would like to opt-in, simply go to our <a href="http://github.com/resume/resume.github.com">GitHub Project</a> page and <strong>star</strong> the project.</p>
|
||||
<p>This user has <strong>not</strong> opted in to this unofficial GitHub résumé service.</p>
|
||||
<br />
|
||||
<p>If you would like to opt-in, simply go to our <a href="http://github.com/resume/resume.github.com">GitHub Project</a> page and <strong>star</strong> the project.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
|
||||
<div class="org {{last}}">
|
||||
<h2>{{name}}</h2>
|
||||
<h3>Member</h3>
|
||||
<h4>{{now}}</h4>
|
||||
<p>If you would like more information about this organization, please visit <a href="https://github.com/{{name}}">the organization page</a> on GitHub.</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="org {{last}}">
|
||||
<h2>{{name}}</h2>
|
||||
<h3>Member</h3>
|
||||
<h4>{{now}}</h4>
|
||||
<p>If you would like more information about this organization, please visit <a href="https://github.com/{{name}}">the organization page</a> on GitHub.</p>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{{#repo}}
|
||||
<hgroup>
|
||||
<h1>{{repo}}</h1>
|
||||
<h2>{{language}}</h2>
|
||||
</hgroup>
|
||||
<p>{{description}}</p>
|
||||
<hgroup>
|
||||
<h1>{{repo}}</h1>
|
||||
<h2>{{language}}</h2>
|
||||
</hgroup>
|
||||
<p>{{description}}</p>
|
||||
{{/repo}}
|
||||
|
||||
@@ -1,58 +1,58 @@
|
||||
<div id="actions" class="yui-t7">
|
||||
<a href="#" id="print">Print</a>
|
||||
<a href="mailto:?subject=Resume for {{name}}&body=Link to resume: {{resume_url}}" id="email">Email</a>
|
||||
<a href="#" id="print">Print</a>
|
||||
<a href="mailto:?subject=Resume for {{name}}&body=Link to resume: {{resume_url}}" id="email">Email</a>
|
||||
</div>
|
||||
|
||||
<div id="doc2" class="yui-t7">
|
||||
|
||||
<div id="inner" class="vcard">
|
||||
<div id="inner" class="vcard">
|
||||
|
||||
<div id="hd">
|
||||
<div class="yui-gc">
|
||||
<div class="yui-u first">
|
||||
<h1 class="fn">{{name}}</h1>
|
||||
<h2>{{userStatus}}</h2>
|
||||
</div>
|
||||
<div id="hd">
|
||||
<div class="yui-gc">
|
||||
<div class="yui-u first">
|
||||
<h1 class="fn">{{name}}</h1>
|
||||
<h2>{{userStatus}}</h2>
|
||||
</div>
|
||||
|
||||
<div class="yui-u">
|
||||
<div class="contact-info">
|
||||
{{#gravatar_id}}
|
||||
<img src="https://secure.gravatar.com/avatar/{{gravatar_id}}?s=140&d=https://github.com/images/gravatars/gravatar-140.png" alt="avatar" class="photo" />
|
||||
{{/gravatar_id}}
|
||||
{{#email}}<h3><a href="mailto:{{email}}" class="email">{{email}}</a></h3>{{/email}}
|
||||
</div><!--// .contact-info -->
|
||||
</div>
|
||||
</div><!--// .yui-gc -->
|
||||
</div><!--// hd -->
|
||||
<div class="yui-u">
|
||||
<div class="contact-info">
|
||||
{{#gravatar_id}}
|
||||
<img src="https://secure.gravatar.com/avatar/{{gravatar_id}}?s=140&d=https://github.com/images/gravatars/gravatar-140.png" alt="avatar" class="photo" />
|
||||
{{/gravatar_id}}
|
||||
{{#email}}<h3><a href="mailto:{{email}}" class="email">{{email}}</a></h3>{{/email}}
|
||||
</div><!--// .contact-info -->
|
||||
</div>
|
||||
</div><!--// .yui-gc -->
|
||||
</div><!--// hd -->
|
||||
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
<div class="yui-b">
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
<div class="yui-b">
|
||||
|
||||
<div id="profile" class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>GitHub Profile</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
On GitHub {{#earlyAdopter}}as an early adopter {{/earlyAdopter}} since {{since}}, {{name}} is a developer
|
||||
{{#location}}
|
||||
based in <span class="adr locality">{{location}}</span>
|
||||
{{/location}}
|
||||
{{#repos}}with <a href="https://github.com/{{{username}}}?tab=repositories">{{repos}} public {{reposLabel}}</a>{{/repos}}{{^repos}}without any public repository for now{{/repos}}{{#followers}} and <a href="https://github.com/{{{username}}}/followers">{{followers}} {{followersLabel}}</a>{{/followers}}.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
{{#website}}
|
||||
<div class="yui-gf" id="mywebsite">
|
||||
<div class="yui-u first">
|
||||
<h2>Website</h2>
|
||||
</div>
|
||||
<div class="yui-u" id="content-website">
|
||||
<a href="{{website}}" id="mywebsite" title="{{name}}'s website">{{website}}</a>
|
||||
</div>
|
||||
</div>
|
||||
{{/website}}
|
||||
<div id="profile" class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>GitHub Profile</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
On GitHub {{#earlyAdopter}}as an early adopter {{/earlyAdopter}} since {{since}}, {{name}} is a developer
|
||||
{{#location}}
|
||||
based in <span class="adr locality">{{location}}</span>
|
||||
{{/location}}
|
||||
{{#repos}}with <a href="https://github.com/{{{username}}}?tab=repositories">{{repos}} public {{reposLabel}}</a>{{/repos}}{{^repos}}without any public repository for now{{/repos}}{{#followers}} and <a href="https://github.com/{{{username}}}/followers">{{followers}} {{followersLabel}}</a>{{/followers}}.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
{{#website}}
|
||||
<div class="yui-gf" id="mywebsite">
|
||||
<div class="yui-u first">
|
||||
<h2>Website</h2>
|
||||
</div>
|
||||
<div class="yui-u" id="content-website">
|
||||
<a href="{{website}}" id="mywebsite" title="{{name}}'s website">{{website}}</a>
|
||||
</div>
|
||||
</div>
|
||||
{{/website}}
|
||||
<div class="yui-gf" id="mylanguages">
|
||||
<div class="yui-u first">
|
||||
<h2>Languages</h2>
|
||||
@@ -61,47 +61,47 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="repositories" class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Popular Repositories</h2>
|
||||
</div><!--// .yui-u -->
|
||||
<div id="repositories" class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Popular Repositories</h2>
|
||||
</div><!--// .yui-u -->
|
||||
|
||||
<div class="yui-u" id="jobs">
|
||||
<div class="yui-u" id="jobs">
|
||||
<span>Loading information...</span><img src="images/loader.gif" />
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
|
||||
<div class="yui-gf" id="organizations">
|
||||
<div class="yui-u first">
|
||||
<h2>Organizations</h2>
|
||||
</div><!--// .yui-u -->
|
||||
<div class="yui-u first">
|
||||
<h2>Organizations</h2>
|
||||
</div><!--// .yui-u -->
|
||||
|
||||
<div class="yui-u" id="orgs">
|
||||
<div class="yui-u" id="orgs">
|
||||
<span>Loading information...</span><img src="images/loader.gif" />
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
|
||||
<div id="about" class="yui-gf last">
|
||||
<div class="yui-u first">
|
||||
<h2>About This Résumé</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
This résumé is generated automatically using public information from the developer's GitHub account. The repositories are
|
||||
ordered by popularity based on a very simple popularity heuristic that defines the popularity of a repository
|
||||
by its sum of watchers and forks. Do not hesitate to visit <a href="https://github.com/{{{username}}}" title="{{name}}'s GitHub page">{{name}}'s GitHub page</a>
|
||||
for a complete work history.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-b -->
|
||||
</div><!--// yui-main -->
|
||||
</div><!--// bd -->
|
||||
<div id="about" class="yui-gf last">
|
||||
<div class="yui-u first">
|
||||
<h2>About This Résumé</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
This résumé is generated automatically using public information from the developer's GitHub account. The repositories are
|
||||
ordered by popularity based on a very simple popularity heuristic that defines the popularity of a repository
|
||||
by its sum of watchers and forks. Do not hesitate to visit <a href="https://github.com/{{{username}}}" title="{{name}}'s GitHub page">{{name}}'s GitHub page</a>
|
||||
for a complete work history.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-b -->
|
||||
</div><!--// yui-main -->
|
||||
</div><!--// bd -->
|
||||
|
||||
<div id="ft">
|
||||
<p>{{name}} — {{#email}}<a href="mailto:{{email}}">{{email}}</a> — {{/email}} {{#website}}<a href="{{website}}" title="{{name}}'s website">{{website}}</a> — {{/website}} <a href="https://github.com/{{username}}" title="GitHub profile" class="url">https://github.com/{{username}}</a></p>
|
||||
</div><!--// footer -->
|
||||
<div id="ft">
|
||||
<p>{{name}} — {{#email}}<a href="mailto:{{email}}">{{email}}</a> — {{/email}} {{#website}}<a href="{{website}}" title="{{name}}'s website">{{website}}</a> — {{/website}} <a href="https://github.com/{{username}}" title="GitHub profile" class="url">https://github.com/{{username}}</a></p>
|
||||
</div><!--// footer -->
|
||||
|
||||
</div><!-- // inner -->
|
||||
</div><!-- // inner -->
|
||||
|
||||
</div><!--// doc -->
|
||||
|
||||
@@ -1,88 +1,88 @@
|
||||
<div id="doc2" class="yui-t7">
|
||||
<div id="inner">
|
||||
<div id="inner">
|
||||
|
||||
<div id="hd">
|
||||
<div class="yui-gc">
|
||||
<div class="yui-u first">
|
||||
<hgroup>
|
||||
<h1>{{name}}</h1>
|
||||
<h2>Github organization</h2>
|
||||
</hgroup>
|
||||
</div>
|
||||
<div id="hd">
|
||||
<div class="yui-gc">
|
||||
<div class="yui-u first">
|
||||
<hgroup>
|
||||
<h1>{{name}}</h1>
|
||||
<h2>Github organization</h2>
|
||||
</hgroup>
|
||||
</div>
|
||||
|
||||
<div class="yui-u">
|
||||
<div class="contact-info">
|
||||
{{#gravatar_id}}
|
||||
<img src="{{avatar_url}}" alt="avatar" class="photo"/>
|
||||
{{/gravatar_id}}
|
||||
{{#email}}<h3><a href="mailto:{{email}}">{{email}}</a></h3>{{/email}}
|
||||
</div><!--// .contact-info -->
|
||||
</div>
|
||||
</div><!--// .yui-gc -->
|
||||
</div><!--// hd -->
|
||||
<div class="yui-u">
|
||||
<div class="contact-info">
|
||||
{{#gravatar_id}}
|
||||
<img src="{{avatar_url}}" alt="avatar" class="photo"/>
|
||||
{{/gravatar_id}}
|
||||
{{#email}}<h3><a href="mailto:{{email}}">{{email}}</a></h3>{{/email}}
|
||||
</div><!--// .contact-info -->
|
||||
</div>
|
||||
</div><!--// .yui-gc -->
|
||||
</div><!--// hd -->
|
||||
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
<div class="yui-b">
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
<div class="yui-b">
|
||||
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Github Profile</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
We are a group of developers
|
||||
{{#location}}
|
||||
based in {{location}}
|
||||
{{/location}}
|
||||
{{#repos}}
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Github Profile</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
We are a group of developers
|
||||
{{#location}}
|
||||
based in {{location}}
|
||||
{{/location}}
|
||||
{{#repos}}
|
||||
with <a href="https://github.com/{{{username}}}?tab=repositories">{{repos}} public {{reposLabel}}</a>
|
||||
{{/repos}}
|
||||
{{#followers}} and <a href="https://github.com/{{{username}}}/followers">{{followers}} {{followersLabel}}</a>{{/followers}}.
|
||||
We created this GitHub group in {{since}}{{#earlyAdopter}}, therefore we're early adopters,{{/earlyAdopter}}{{#website}} and you can find more information about us at <a href="{{website}}" id="mywebsite" title="my website">{{website}}</a>{{/website}}.
|
||||
</p>
|
||||
<p id="languages" class="enlarge"></p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
<div class="yui-gf" id="mylanguages">
|
||||
<div class="yui-u first">
|
||||
<h2>Languages</h2>
|
||||
</div>
|
||||
<div class="yui-u" id="content-languages">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Our Popular Repositories</h2>
|
||||
</div><!--// .yui-u -->
|
||||
We created this GitHub group in {{since}}{{#earlyAdopter}}, therefore we're early adopters,{{/earlyAdopter}}{{#website}} and you can find more information about us at <a href="{{website}}" id="mywebsite" title="my website">{{website}}</a>{{/website}}.
|
||||
</p>
|
||||
<p id="languages" class="enlarge"></p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
<div class="yui-gf" id="mylanguages">
|
||||
<div class="yui-u first">
|
||||
<h2>Languages</h2>
|
||||
</div>
|
||||
<div class="yui-u" id="content-languages">
|
||||
|
||||
<div class="yui-u" id="jobs">
|
||||
<span>Loading information...</span><img src="images/loader.gif" />
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h2>Our Popular Repositories</h2>
|
||||
</div><!--// .yui-u -->
|
||||
|
||||
<div class="yui-gf last">
|
||||
<div class="yui-u first">
|
||||
<h2>About This Résumé</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
This résumé is generated automatically using information from github. The repositories are
|
||||
ordered by popularity based on a very simple popularity heuristic that defines the popularity of a repository
|
||||
by its sum of watchers and forks. Do not hesitate to visit <a href="https://github.com/{{{username}}}" title="My Github page">our github group's page</a>
|
||||
for more information about our repositories and work.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-b -->
|
||||
</div><!--// yui-main -->
|
||||
</div><!--// bd -->
|
||||
<div class="yui-u" id="jobs">
|
||||
<span>Loading information...</span><img src="images/loader.gif" />
|
||||
</div><!--// .yui-u -->
|
||||
</div><!--// .yui-gf -->
|
||||
|
||||
<div id="ft">
|
||||
<p>{{name}} — {{#email}}<a href="mailto:{{email}}">{{email}}</a> — {{/email}} <a href="https://github.com/{{username}}" title="Github profile">https://github.com/{{username}}</a></p>
|
||||
</div><!--// footer -->
|
||||
<div class="yui-gf last">
|
||||
<div class="yui-u first">
|
||||
<h2>About This Résumé</h2>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<p class="enlarge">
|
||||
This résumé is generated automatically using information from github. The repositories are
|
||||
ordered by popularity based on a very simple popularity heuristic that defines the popularity of a repository
|
||||
by its sum of watchers and forks. Do not hesitate to visit <a href="https://github.com/{{{username}}}" title="My Github page">our github group's page</a>
|
||||
for more information about our repositories and work.
|
||||
</p>
|
||||
</div>
|
||||
</div><!--// .yui-gf -->
|
||||
</div><!--// .yui-b -->
|
||||
</div><!--// yui-main -->
|
||||
</div><!--// bd -->
|
||||
|
||||
</div><!-- // inner -->
|
||||
<div id="ft">
|
||||
<p>{{name}} — {{#email}}<a href="mailto:{{email}}">{{email}}</a> — {{/email}} <a href="https://github.com/{{username}}" title="Github profile">https://github.com/{{username}}</a></p>
|
||||
</div><!--// footer -->
|
||||
|
||||
</div><!-- // inner -->
|
||||
|
||||
</div><!--// doc -->
|
||||
|
||||
Reference in New Issue
Block a user