mediocre-blog/index.html

14 lines
322 B
HTML
Raw Normal View History

2013-10-17 00:20:50 +00:00
---
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>