blob: 2158ac9665f2eea35fcab1684bd545b700667ed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
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><time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%A, %-d %B %Y" }}</time></p>
{{ post.excerpt }}
<p><a href="{{ post.url }}">Continue reading <i class="fa fa-chevron-right"></i></a></p>
{% endfor %}
</section>
|