blob: 63de283d82186696c6e662eb1c16b3f92cf04e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
---
<h1><a href="../">../</a> Blog</h1>
<p>I occasionally write things, and when I do they usually end up here. There's
also an <a href="/feed.xml">RSS feed</a>.</p>
{% for post in site.posts %}
<h2>
<a href="{{post.url}}">{{post.title}}</a>
</h2>
<p>Posted on {{post.date | date: "%Y-%m-%d"}}</p>
{{post.excerpt}}
{% endfor %}
|