blob: 6d0eff3b2a34200440c6a43f12c4407f4b8b3b9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
layout: blog
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
redirect_from: /writing/
---
<h1>Posts</h1>
{% for post in site.posts %}
<div class="post">
<div class="post-date">
<time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%-d %B %Y" }}</time>
</div>
<div class="post-title">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
</div>
{% endfor %}
|