blob: 7f63d3dae88c7f51c6776887a0f4d675b80378f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
---
<h1>Posts</h1>
<p>I occasionally write things, and when I do they usually end up here.</p>
<ul>
{% for post in site.posts %}
<li>{{post.date | date: "%Y-%m-%d"}} <a href="{{post.url}}">{{post.title}}</a></li>
{% endfor %}
</ul>
|