diff options
| author | tekkub <tekkub@gmail.com> | 2009-06-15 23:31:29 -0600 |
|---|---|---|
| committer | tekkub <tekkub@gmail.com> | 2009-06-15 23:31:29 -0600 |
| commit | 8d42b4e52dca0f7591940d55e4e64bc3d4a5f205 (patch) | |
| tree | 53c6a39d7ae81e1ec7c0de0b83a1ce1bf8065b56 | |
| parent | 8174a238699b9d59ed6fdee1b83f9f428834f36a (diff) | |
Rejigger index
| -rw-r--r-- | _layouts/default.html | 4 | ||||
| -rw-r--r-- | index.textile | 20 |
2 files changed, 16 insertions, 8 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index bfcb9a2..1a3224a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -33,6 +33,10 @@ </div> </div> + <div class="span-21" id="welcome"> + <h1>{{ page.title }}</h1> + </div> + {{ content }} <div id="footer" class="span-21"> diff --git a/index.textile b/index.textile index 5df482b..da5d86a 100644 --- a/index.textile +++ b/index.textile @@ -1,9 +1,9 @@ --- layout: default +title: Welcome to the GitHub Help site --- <div class="span-21" id="welcome"> - <h1>Welcome to the GitHub Help site</h1> <p> Here we have compiled many guides to help you set up and use GitHub. Be aware that these guides generall only cover GitHub-specific topics, for help learning @@ -36,22 +36,26 @@ layout: default </div> <div class="span-5"> - <h2>Beginner</h2> - <div class='episode'> - <b><a href="p/intro.html">Introduction To Git</a></b> - <p>What Git is, why you would want to use it and where to get it and learn about it.</p> - </div> + <h2>Windows</h2> + {% for post in site.categories.windows %} + <div class='episode'> + <b><a href="{{ post.url }}">{{ post.title }}</a></b> + {% if post.description %} + <p>{{ post.description }}</p> + {% endif %} + </div> + {% endfor %} </div> <div class="span-5"> - <h2>Intermediate</h2> + <h2>Mac OSX</h2> <div class='episode'><b>Distributed Git</b> <p>Fetch, merge, pull and push between multiple remote repositories.</p> </div> </div> <div class="span-5"> - <h2>Advanced</h2> + <h2>Linux</h2> <div class='episode'> <b>Filter Branch</b> <p>Modify large sections of your commit history at once, changing emails, names or files globally.</p> |
