Skip to content

Commit

Permalink
fix the list display on the dedicated guides page
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmin committed Sep 14, 2012
1 parent 28be88a commit ac0368b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions guides/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
<h1>Guides</h1>
<ul class="posts">
{% for post in site.categories.guides %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
<li>
<span class="date">{{ post.date | date_to_string }}</span>
<span class="sep">&raquo;</span>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>

0 comments on commit ac0368b

Please sign in to comment.