add blog/ (jekyll folder structure for http://i3.zekjur.net/blog/)

This commit is contained in:
Michael Stapelberg
2010-10-17 18:28:41 +02:00
parent d1e3fd192f
commit 54fcc5fc3e
5 changed files with 121 additions and 0 deletions

12
blog/index.html Normal file
View File

@ -0,0 +1,12 @@
---
layout: default
---
<h1>blog: Whats new?</h1>
{% for post in site.posts %}
<div class="post">
<h2><span class="date">{{ post.date | date:"%Y-%m-%d" }}</span> <a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content }}
</div>
{% endfor %}