Slightly friendlier and personal date formatting; classes for dem styles, yo

This commit is contained in:
Joel Glovier 2014-02-15 23:16:11 -05:00
parent 3d464688fc
commit e5cf3cbbc1
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ layout: default
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
<li><span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span> <a class="post-link" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>