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

{% for project in site.data.projects %}
{% if project.live %}
<h1><a href="{{ project.live }}">{{ project.name }}</a></h1>
{% else %}
<h1>{{ project.name }}</h1>
{% endif %}
<ul class="compressed-list">
  <li>{{ project.description }}</li>
  <li>{{ project.tech }}</li>
  {% if project.github %}
  <li><a href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> {{ project.github }}</a></li>
  {% endif %}
</ul>
{% endfor %}