summaryrefslogtreecommitdiff
path: root/projects/index.html
blob: 7e82d23b5528da6435ab61375b04fcf3b136a4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: blog
title: Ben Burwell’s Projects
description: Projects I’ve done.
---

<h1>My Projects</h1>

{% for project in site.data.projects %}
<h2>
  {% if project.live %}
    <a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
  {% else %}
    {{ project.name }}
  {% endif %}
</h2>
<p class="muted">
  {{ project.tech }}
  {% if project.github %}
    &bull;
    <a class="muted" href="https://github.com/{{ project.github }}">{{ project.github }}</a>
  {% endif %}
</p>
<p>{{ project.description }}</p>
{% endfor %}