1
Fork 0

Add posts page to list all.

This commit is contained in:
Jan-Erik Rediger 2013-05-10 20:18:10 +02:00
parent 590218f27a
commit cf66d16c3d
2 changed files with 9 additions and 0 deletions

View file

@ -19,6 +19,7 @@
<a href="/">fnordig</a>
</h1>
<ul>
<li><a href="/posts/">posts</a></li>
<li><a href="/about/">about</a></li>
<li><a href="/feed.xml">feed</a></li>
<li>| links:</li>

8
posts.md Normal file
View file

@ -0,0 +1,8 @@
---
layout: post
title: posts
---
{% for post in site.posts %}
* {{post.date | date_to_string}}: [{{post.title}}]({{post.url}})
{% endfor %}