From 9d6b25ebedd2d76c28859b4cfeace8f1f6a2c924 Mon Sep 17 00:00:00 2001
From: Markus Birth <mbirth@gmail.com>
Date: Wed, 18 Feb 2015 22:30:47 +0100
Subject: [PATCH] Show date in index.

---
 index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html
index 7af383f..699fb5c 100644
--- a/index.html
+++ b/index.html
@@ -37,7 +37,7 @@ title: Welcome to the Wiki
 <p>All posts:</p>
 <ul>
   {% for post in site.posts %}
-    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+    <li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li>
   {% endfor %}
 </ul>