<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -42,7 +42,7 @@ paginate: 5
 
 In our case, we want our blog posts to be split with 5 posts per page. Let's look at the code to render the paginated list.
 
-&lt;pre&gt;
+{% highlight html %}
 &lt;ul class=&quot;posts&quot;&gt;
   {% for post in paginator.posts %}
     &lt;li&gt;&lt;span class=&quot;weak&quot;&gt;
@@ -54,14 +54,16 @@ In our case, we want our blog posts to be split with 5 posts per page. Let's loo
 
 &lt;!-- Pagination --&gt;
 {% if paginator.previous_page == 1 %}
-	&lt;a class=&quot;semi-weak&quot; href=&quot;/&quot;&gt;&amp;laquo; fresh thoughts&lt;/a&gt;
+	&lt;a class=&quot;semi-weak&quot; href=&quot;/&quot;&gt;newer posts&lt;/a&gt;
 {% endif %}
 {% if paginator.previous_page &gt; 1 %}
-	&lt;a class=&quot;semi-weak&quot; href=&quot;/page{{ paginator.previous_page }}&quot;&gt;&amp;laquo; fresh thoughts&lt;/a&gt;
+	&lt;a class=&quot;semi-weak&quot; href=&quot;/page{{ paginator.previous_page }}&quot;&gt;newer posts&lt;/a&gt;
 {% endif %}
 {% if paginator.next_page &lt;= paginator.total_pages %}
-	&lt;a class=&quot;semi-weak&quot; href=&quot;/page{{ paginator.next_page }}&quot;&gt;stale thoughts &amp;raquo;&lt;/a&gt;
+	&lt;a class=&quot;semi-weak&quot; href=&quot;/page{{ paginator.next_page }}&quot;&gt;older posts&lt;/a&gt;
 {% endif %}
-&lt;/pre&gt;
+{% endhighlight %}
+
+The top portion of the code iterates through the array of posts that are present for that page. It prints the date, title and a link to the post. Below that is what handles the pagination links. 
 
-The top portion of the code 
+In this example, if we have 13 posts - jekyll will generate index.html, page2/index.html and page3/index.html: All with the appropriate navigation links.</diff>
      <filename>_posts/2009-10-07-jekyll-pagination-example.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>262870027ea01a196bb34e666db14be6dc025962</id>
    </parent>
  </parents>
  <author>
    <name>Blake Smith</name>
    <email>blakesmith0@gmail.com</email>
  </author>
  <url>http://github.com/blakesmith/blakesmith.github.com/commit/d0da252f3c4afe646abc8ef769f4e070a9dc5d9f</url>
  <id>d0da252f3c4afe646abc8ef769f4e070a9dc5d9f</id>
  <committed-date>2009-10-14T07:38:23-07:00</committed-date>
  <authored-date>2009-10-14T07:38:23-07:00</authored-date>
  <message>Body of jekyll post, plus work on the inline jekyll code</message>
  <tree>329fe7823b5c42b095aa8d4460ca434bd8ea80da</tree>
  <committer>
    <name>Blake Smith</name>
    <email>blakesmith0@gmail.com</email>
  </committer>
</commit>
