blob: 43de7f5f9b27aa0aebc2a75aa2764bed423f9651 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
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.posts %}
{% if post.type == "writing" %}
<div class="writing">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>{{ post.description }}</p>
</div>
{% endif %}
{% endfor %}
|