blob: b7ad2a50d3993a491eaae9e5f348c2b30c7826a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
layout: master
title: Ben Burwell’s Writing
description: A small collection of writing I’ve done on various topics over the years.
---
{% for post in site.categories.writing %}
<div class="writing">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>{{ post.description }}</p>
</div>
{% endfor %}
|