aboutsummaryrefslogtreecommitdiffstats
path: root/blog/index.html
blob: f33263e540078d3ecd718ea06df692a603894938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>