aboutsummaryrefslogtreecommitdiffstats
path: root/blog/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'blog/index.html')
-rw-r--r--blog/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/blog/index.html b/blog/index.html
new file mode 100644
index 000000000..f33263e54
--- /dev/null
+++ b/blog/index.html
@@ -0,0 +1,25 @@
+---
+layout: page
+title: Blog
+redirect_from:
+ - /2011/07/
+ - /2011/09/
+ - /2011/10/
+ - /2012/01/
+ - /2012/04/
+ - /2012/06/
+ - /2012/11/
+ - /2013/04/
+ - /2013/06/
+---
+
+<h1>Blog</h1>
+
+<ul class="list-of-blog-posts">
+{% for post in site.posts %}
+ <li class="listed-blog-post">
+ <h2 class="blog-title"><a href="{{ post.url }}">{{ post.title }}</a> <small class="meta meta--date">{{ post.date | date: "%d %B %Y" }}</small></h2>
+ {{ post.content }}
+ </li>
+{% endfor %}
+</ul>