mediocre-blog/index.html
2013-10-16 20:20:50 -04:00

14 lines
322 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>