blob: f8b9b1d95eb0e27a1b0641fdfee1f63fd0223ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
layout: master
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
redirect_from: /writing/
---
<section>
{% for post in site.posts %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p class="muted sans">by Ben Burwell <a href="https://twitter.com/bburwell">@bburwell</a> • <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%A, %-d %B %Y" }}</time></p>
{{ post.excerpt }}
{% endfor %}
</section>
|