-
Notifications
You must be signed in to change notification settings - Fork 53
/
template.hbs
56 lines (53 loc) · 3.46 KB
/
template.hbs
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="patchwork, git, github, open source">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Patchwork: Git, GitHub and the Pursuit of Open Source</title>
<link rel="shortcut icon" href="https://raw2.github.com/jlord/patchwork/gh-pages/favicon.png"/>
<link href='style.css' rel='stylesheet'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600,700,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="large-container">
<div id="welcome-name">
<h1>Congrats, you did it!</h1>
<div id="user-name" class="swing animated" style="display: block;">
<pre><code>{{#featured}}{{userArt}}{{/featured}}</code></pre>
</div>
</div>
</div>
<div class="container">
<h2 style="text-align: center;">You <strong>pull request</strong> with the best of 'em.</h2>
<h3>You now know alternate meanings for the words <strong>fork</strong> and <strong>branch</strong> and you've <strong>collaborated</strong> with someone (or robot) elsewhere. Below are the <strong>last 100</strong> to have completed Git-it.</h3>
<div id="compatriots">
<ul class="compatriots-list">
{{#everyone}}<li><span class="userdetail"><a href="https://www.github.com/{{user}}{{username}}" target="_blank">@{{user}}{{username}}</a></span> <span class="userdate">{{time}}</span></li>{{/everyone}}
</ul>
</div>
<div class="textcontainer">
<div id="about" class="halvsies">
<h4>That's not All!</h4>
<div class="totalwow">{{total}}</div>
<p>fine humans have completed <a href="https://www.github.com/jlord/git-it" target="_blank">Git-it</a>, an open source app for learning Git and GitHub.</p> <p>The <a href="https://www.github.com/jlord/git-it" target="_blank">Git-it</a> challenges are self directed so one can do it on their own, but it also makes for a great <a href="http://nodeschool.io/" target="_blank">nodeschool.io</a> workshop.</p>
</div>
<div id="next" class="halvsies">
<h4>What next?</h4>
<p>Don't stop now, keep going! Here are some ideas for what to work on next.</p>
<ul class="what-next-list">
<li>Make a repository on GitHub named 'ghusername.github.io' and fill it with web site files. GitHub will host for free at the same address: ghusername.github.io. <a href="https://pages.github.com" target="_blank">Learn more</a>.</li>
<li>Create a repository and open an issue to make a <a href="https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments" target="_blank">to-do list</a>.</li>
<li>Find interesting open source projects to work with in <a href="https://www.github.com/explore" target="_blank">Explore</a>.</li>
<li>Checkout the GitHub <a href="https://guides.github.com/activities/hello-world">Hello World Guide</a> for more GitHub basics.</li>
<li>Fork an existing site to get your own up and running: <a href="http://jlord.us/forkngo" target="_blank">Fork-n-go</a>.</li>
</ul>
</div>
</div>
</div>
<script>
var text = document.querySelector('#user-name code').innerHTML;text = text.replace(/:/g, '<span>:</span>');document.querySelector('#user-name code').innerHTML = text;
</script>
</body>
</html>