Skip to content
This repository has been archived by the owner on Jul 19, 2020. It is now read-only.

Commit

Permalink
Modified to reverse order of posts index.
Browse files Browse the repository at this point in the history
  • Loading branch information
hilohiro committed Jun 8, 2013
1 parent 5d4a5ee commit df096f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<div id="home">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
{% for post in site.posts reversed %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>

0 comments on commit df096f8

Please sign in to comment.