blob: 125848b9506579fb21a5e7f412955dd76f143202 (
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>
|