blob: a3d4f180106f4973877438fed9090a9f3307d8cb (
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: 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 %}
<small class="light-gray monospace">{{ project.tech }}</small>
</h1>
<p>
{{ project.description }}
{% if project.github %}
<a style="display:inline-block;margin-left:1rem;" href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> Read the code</a>
{% endif %}
</p>
{% endfor %}
|