blob: d9beb47dccce13fe2bf7e8f5002c1359692354e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
layout: master
title: Ben Burwell’s Projects
description: Projects I’ve done.
---
{% for project in site.data.projects %}
<h1>
{% if project.live %}
<a href="{{ project.live }}" target="_blank">{{ project.name }}</a>
{% else %}
{{ project.name }}
{% endif %}
</h1>
<p class="muted sans">
{{ project.tech }}
{% if project.github %}
•
<a href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> {{ project.github }}</a>
{% endif %}
</p>
<p>{{ project.description }}</p>
{% endfor %}
|