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

{% for project in site.data.projects %}

<h1>{{ project.name }} {% if project.live %}<a style="font-size:1rem;" title="{{ project.title }}" href="{{ project.live }}" target="_blank"><i class="fa fa-external-link"></i></a>{% endif %}</h1>

<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 %}