blob: 5b61ffbb1c8ad82f7bad34d3fc60b7dcdc52ae81 (
plain)
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
|
---
layout: default
title: Welcome to the GitHub Help site
---
<div class="span-21" id="welcome">
p. Here we have compiled many guides to help you set up and use GitHub. Be aware that these guides generally only cover GitHub-specific topics, for help learning how to use Git, please check out "Learn.GitHub":http://learn.github.com/
p. This site is a work in progress.
</div>
<div class="span-7" id="start">
<div class="button red">
"Start the Full Course":p/intro.html
</div>
</div>
<div class="span-7" id="how">
<div class="button green">
10 Minute Crash Course
</div>
</div>
<div class="span-7 last" id="why">
<div class="button blue">
"Why Git" in 5 Minutes
</div>
</div>
<div class="span-21 last">
<br clear="both"/>
<hr/>
</div>
{% for cat in site.categories %}
{% case forloop.index %}
{% when 3 or 6 or 9 or 12 or 15 or 18 or 21 %}
{% assign c = 'span-7 last' %}
{% else %}
{% assign c = 'span-7' %}
{% endcase %}
<div class="{{ c }}">
<h2>{{ cat[0] | capitalize }}</h2>
{% for post in cat[1] %}
<b><a href="{{ post.url }}">{{ post.title }}</a></b>
<p>{{ post.description }}</p>
{% endfor %}
</div>
{% endfor %}
|