public
Description: learn git one commit at a time. updates weekly or when great tips are found
Homepage: http://gitready.com
Clone URL: git://github.com/qrush/gitready.git
gitready / index.html
100644 21 lines (20 sloc) 0.567 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
title: learn git one commit at a time
---
{% assign first_post = site.posts.first %}
<div id="post" class="grid_6 alpha content">
  <h2><a href="{{ first_post.url }}">
    newest tip: {{ first_post.title }}
  </a></h2>
  {{ first_post.content | truncate: 450 }}
  <a id="more" href="{{ first_post.url }}">Read More &raquo;</a>
</div>
<div class="grid_2 omega">
  <h3 id="purple">recent tips</h3>
  <ul class="recent">
  {% for post in site.posts limit: 7 %}
    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
  {% endfor %}
  </ul>
</div>