summaryrefslogtreecommitdiff
path: root/projects/index.html
blob: 736558d6efda79803b4961032ac4dc77b8b0751c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
layout: master
title: Ben Burwell’s Projects
description: Projects I’ve done.
---

{% for post in site.posts %}
    {% if post.type == "project" %}
        <div class="project">
            <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
            <p>{{ post.description }}</p>
        </div>
    {% endif %}
{% endfor %}