mediocre-blog/index.html
2013-10-17 19:00:32 -04:00

14 lines
323 B
HTML

---
layout: default
title: Blog Posts
---
<div id="home">
<h2><i class="icon-bookmark"></i> Posts</h2>
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }} &raquo;</span><a href=".{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>