blob: 6cafe58130e48d83853d5e52ff73814827127389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
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 }} »</span><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
|