blob: ae66ec7e4ff73eb302bd862e573f0a0ac1953ae8 (
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
|
---
layout: default
title: Welcome to the GitHub Help site
index_cats:
- setup
- mac
- windows
- collaborating
last_cats:
- windows
---
<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>
{% for cat in (page.index_cats) %}
<div class="span-7 {% if page.last_cats contains cat %}last{% endif %}">
<h2>{{ cat | capitalize }}</h2>
{% for post in site.posts %}{% if post.categories contains cat %}
<b><a href="{{ post.url }}">{{ post.title }}</a></b>
<p>{{ post.description }}</p>
{% endif %}{% endfor %}
</div>
{% endfor %}
|