summaryrefslogtreecommitdiffstats
path: root/blog.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
commit38857a608bab2ea5eb65bfc1c4614033dbf78597 (patch)
tree04a3000340dba8f1dcb99199759b29744cb8b230 /blog.html
downloadwww-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.gz
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.bz2
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.zip
initial commit
Diffstat (limited to 'blog.html')
-rw-r--r--blog.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/blog.html b/blog.html
new file mode 100644
index 0000000..a584e59
--- /dev/null
+++ b/blog.html
@@ -0,0 +1,18 @@
+{% meta %}
+ title: Blog
+ top_link: 1
+{% endmeta %}
+
+{% block content %}
+
+<h2>Latest posts</h2>
+
+{% for post in site.posts %}
+<p>
+ <a href="{{ post.get_url() }}">{{ post.title }}</a>
+ -
+ {{ post.date.strftime('%Y, %B %d') }}
+</p>
+{% endfor %}
+
+{% endblock %}